diff --git a/components/media_player.denonavr/index.html b/components/media_player.denonavr/index.html
index fd2d9191c0..978993dc78 100644
--- a/components/media_player.denonavr/index.html
+++ b/components/media_player.denonavr/index.html
@@ -83,6 +83,7 @@
Denon AVR-1912
Denon AVR-2312CI
Denon AVR-3311CI
+ Denon AVR-4810
Marantz M-CR603
Marantz M-RC610
Marantz SR5008
diff --git a/components/switch.rpi_gpio/index.html b/components/switch.rpi_gpio/index.html
index e0436b092b..7719cae792 100644
--- a/components/switch.rpi_gpio/index.html
+++ b/components/switch.rpi_gpio/index.html
@@ -88,12 +88,21 @@
- ports array (Required): Array of used ports.
- - port: name (Required): Port numbers and corresponding names.
+ - port: name (Required): Port numbers and corresponding names (GPIO #).
- invert_logic (Optional): If true, inverts the output logic to ACTIVE LOW. Default is false (ACTIVE HIGH).
For more details about the GPIO layout, visit the Wikipedia article about the Raspberry Pi.
+A common question is what does Port refer to, this number is the actual GPIO # not the pin #.
+For example, if you have a relay connected to pin 11 its GPIO # is 17.
+# Example configuration.yaml entry
+switch:
+ - platform: rpi_gpio
+ ports:
+ 17: Speaker Relay
+
+