mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-06-01 07:46:49 +00:00

* Doc standart fixes * Update sensor.citybikes.markdown * Update sensor.cpuspeed.markdown * Update sensor.citybikes.markdown * Config standart fixes * Update sensor.swiss_public_transport.markdown * Update sensor.swiss_public_transport.markdown * Update sensor.ted5000.markdown * Update sensor.worldclock.markdown * Update sensor.worxlandroid.markdown
43 lines
1.0 KiB
Markdown
43 lines
1.0 KiB
Markdown
---
|
|
layout: page
|
|
title: "Worx Landroid"
|
|
description: "Instructions on 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
|
|
logo: worx.png
|
|
ha_category: DIY
|
|
ha_release: 0.54
|
|
ha_iot_class: "Local Polling"
|
|
---
|
|
|
|
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: worxlandroid
|
|
host: 192.168.0.10
|
|
pin: 1234
|
|
```
|
|
|
|
{% configuration %}
|
|
host:
|
|
description: The ip address or host name of the mower.
|
|
required: true
|
|
type: string
|
|
pin:
|
|
description: The pin code for the mower.
|
|
required: true
|
|
type: integer
|
|
allow_unreachable:
|
|
description: This will allow the mower to be outside of wifi range without raising an error.
|
|
required: false
|
|
type: boolean
|
|
default: true
|
|
{% endconfiguration %}
|