From f5cf482bf17e9853bd45220464a60f563ce21f3e Mon Sep 17 00:00:00 2001 From: nilzen Date: Wed, 13 Sep 2017 19:26:09 +0200 Subject: [PATCH 1/4] Sensor Worx Landroid --- .../_components/sensor.worx-landroid.markdown | 32 +++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 source/_components/sensor.worx-landroid.markdown diff --git a/source/_components/sensor.worx-landroid.markdown b/source/_components/sensor.worx-landroid.markdown new file mode 100644 index 000000000000..ca04de5b8305 --- /dev/null +++ b/source/_components/sensor.worx-landroid.markdown @@ -0,0 +1,32 @@ +--- +layout: page +title: "Worx Landroid" +description: "Instructions how to integrate Worx Landroid WG796E.1 or WG797E as sensors within Home Assistant." +date: 2017-09-12 13:23 +sidebar: true +comments: false +sharing: true +footer: true +ha_category: DIY +ha_release: 0.54 +logo: home-assistant.png +ha_iot_class: "Local Polling" +--- + +The `worx-landroid` sensor platform allows you to get the current state, battery level and error status Worx Landroid WG796E.1 or WG797E. + +To use your Worx Landroid mower in your installation, add the following to your `configuration.yaml` file: + +```yaml +# Example configuration.yaml entry +sensor: + platform: worx-landroid + host: 192.168.0.10 + pin: 1234 +``` + +Configuration variables: + +- **host** (*Required*): The ip address or host name of the mower. +- **pin** (*Required*): The pin code for the mower. +- **allow_unreachable** (*Optional*): This will allow the mower to be outside of wifi range without raising and error (default: True). From 0c03195c142e001887a7473dc0db8794b06a1ab7 Mon Sep 17 00:00:00 2001 From: nilzen Date: Wed, 13 Sep 2017 19:44:33 +0200 Subject: [PATCH 2/4] Fix spelling --- source/_components/sensor.worx-landroid.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/_components/sensor.worx-landroid.markdown b/source/_components/sensor.worx-landroid.markdown index ca04de5b8305..8a1fb84a1972 100644 --- a/source/_components/sensor.worx-landroid.markdown +++ b/source/_components/sensor.worx-landroid.markdown @@ -29,4 +29,4 @@ Configuration variables: - **host** (*Required*): The ip address or host name of the mower. - **pin** (*Required*): The pin code for the mower. -- **allow_unreachable** (*Optional*): This will allow the mower to be outside of wifi range without raising and error (default: True). +- **allow_unreachable** (*Optional*): This will allow the mower to be outside of wifi range without raising an error (default: True). From c173728fb15dbb0e94dd91f28cdf737a99228deb Mon Sep 17 00:00:00 2001 From: nilzen Date: Wed, 13 Sep 2017 20:55:31 +0200 Subject: [PATCH 3/4] Rename to match module name --- ...sensor.worx-landroid.markdown => sensor.worxlandroid.markdown} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename source/_components/{sensor.worx-landroid.markdown => sensor.worxlandroid.markdown} (100%) diff --git a/source/_components/sensor.worx-landroid.markdown b/source/_components/sensor.worxlandroid.markdown similarity index 100% rename from source/_components/sensor.worx-landroid.markdown rename to source/_components/sensor.worxlandroid.markdown From 3d5f4e48afcc00761640beadc9fc4eded74f9d26 Mon Sep 17 00:00:00 2001 From: nilzen Date: Wed, 13 Sep 2017 21:26:25 +0200 Subject: [PATCH 4/4] Use new component name --- source/_components/sensor.worxlandroid.markdown | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/_components/sensor.worxlandroid.markdown b/source/_components/sensor.worxlandroid.markdown index 8a1fb84a1972..98b699b9ab8a 100644 --- a/source/_components/sensor.worxlandroid.markdown +++ b/source/_components/sensor.worxlandroid.markdown @@ -13,14 +13,14 @@ logo: home-assistant.png ha_iot_class: "Local Polling" --- -The `worx-landroid` sensor platform allows you to get the current state, battery level and error status Worx Landroid WG796E.1 or WG797E. +The `worxlandroid` sensor platform allows you to get the current state, battery level and error status Worx Landroid WG796E.1 or WG797E. To use your Worx Landroid mower in your installation, add the following to your `configuration.yaml` file: ```yaml # Example configuration.yaml entry sensor: - platform: worx-landroid + platform: worxlandroid host: 192.168.0.10 pin: 1234 ```