From 98110c81699e07c3c44915504a7220ebcceff783 Mon Sep 17 00:00:00 2001 From: Tyler Page Date: Sat, 11 Mar 2017 20:19:49 -0500 Subject: [PATCH] Update wake_on_lan markdown wake_on_lan requires a host key in .40, where before it was optional. --- source/_components/switch.wake_on_lan.markdown | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/source/_components/switch.wake_on_lan.markdown b/source/_components/switch.wake_on_lan.markdown index 78df4ddf4791..14008b6838d4 100644 --- a/source/_components/switch.wake_on_lan.markdown +++ b/source/_components/switch.wake_on_lan.markdown @@ -26,13 +26,14 @@ To enable this switch in your installation, add the following to your `configura switch: - platform: wake_on_lan mac_address: "00-01-02-03-04-05" + host: 192.168.1.1 ``` Configuration variables: - **mac_address** (*Required*): MAC address to send the wake up command to. +- **host** (*Required*): The IP address or hostname to check the state of the device (on/off). - **name** (*Optional*): The name of the switch. Default is 'Wake on LAN'. -- **host** (*Optional*): The IP address or hostname to check the state of the device (on/off). - **turn_off** (*Optional*): Defines an [action](/getting-started/automation/) to run when the switch is turned off. ## {% linkable_title Examples %}