Skip to content

Commit fd2dd4d

Browse files
jbarrancosfabaff
authored andcommitted
Updated documentation with new sensor (home-assistant#4094)
* Removed parts related to the component * Component configuration * Update rainbird.markdown * Update rainbird.markdown * Create sensor.rainbird.markdown * Update sensor.rainbird.markdown * Update rainbird.markdown * Update sensor.rainbird.markdown * Update sensor.rainbird.markdown * Update sensor.rainbird.markdown * Update rainbird.markdown * Update sensor.rainbird.markdown
1 parent 29b4c67 commit fd2dd4d

File tree

3 files changed

+66
-6
lines changed

3 files changed

+66
-6
lines changed

source/_components/rainbird.markdown

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
---
2+
layout: page
3+
title: "Rain Bird"
4+
description: "Instructions on how to integrate your Rain Bird LNK WiFi Module within Home Assistant."
5+
date: 2017-12-07 12:00
6+
sidebar: true
7+
comments: false
8+
sharing: true
9+
footer: true
10+
logo: rainbird.png
11+
ha_category: Hub
12+
ha_release: 0.61
13+
ha_iot_class: "Local Polling"
14+
---
15+
16+
This `rainbird` component allows interacting with [LNK WiFi](http://www.rainbird.com/landscape/products/controllers/LNK-WiFi.htm) module of the Rain Bird Irrigation system in Home Assistant.
17+
18+
To enable it, add the following to your `configuration.yaml` file:
19+
20+
```yaml
21+
rainbird:
22+
host: '1.1.1.1'
23+
password: 'XXXXXXX'
24+
```
25+
26+
Configuration variables:
27+
28+
- **host** (*Required*): The IP address of your LNK WiFi Module.
29+
- **password** (*Required*): The password for accessing the module.
30+
31+
Finish its configuration by visiting the [Rain Bird sensor](/components/sensor.rainbird/) and [Rain Bird switch](/components/switch.rainbird/) documentation.
32+
33+
Please note that due to the implementation of the API within the LNK Module, there is a concurrency issue. For example, the Rain Bird app will give connection issues (like already a connection active).
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
---
2+
layout: page
3+
title: "Rain Bird Sensor"
4+
description: "Instructions on how to integrate your Rain Bird LNK WiFi Module rain sensor within Home Assistant."
5+
date: 2017-08-25 12:00
6+
sidebar: true
7+
comments: false
8+
sharing: true
9+
footer: true
10+
logo: rainbird.png
11+
ha_category: Hub
12+
ha_release: 0.61
13+
ha_iot_class: "Local Polling"
14+
---
15+
16+
This `rainbird` sensor allows interacting with [LNK WiFi](http://www.rainbird.com/landscape/products/controllers/LNK-WiFi.htm) module of the Rain Bird Irrigation system in Home Assistant.
17+
18+
Once you have enabled the [Rain Bird component](/components/rainburd), add the following to your `configuration.yaml` file to enable the rain sensor:
19+
20+
```yaml
21+
# Example configuration.yaml entry
22+
sensor:
23+
- platform: rainbird
24+
monitored_conditions:
25+
- rainsensor
26+
```
27+
28+
Configuration variables:
29+
30+
- **monitored_conditions**: Currently only rainsensor is supported. Returns the sensor level.
31+
32+
Please note that due to the implementation of the API within the LNK Module, there is a concurrency issue. For example, the Rain Bird app will give connection issues (like already a connection active).

source/_components/switch.rainbird.markdown

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,10 @@ ha_iot_class: "Local Polling"
1515

1616
This `rainbird` switch platform allows interacting with [LNK WiFi](http://www.rainbird.com/landscape/products/controllers/LNK-WiFi.htm) module of the Rain Bird Irrigation system in Home Assistant.
1717

18-
To enable stations as switches inside Home Assistant, add the following to your `configuration.yaml` file:
18+
Once you have enabled the [Rain Bird component](/components/rainbird), add the following to your `configuration.yaml` file:
1919

2020
```yaml
2121
switch:
22-
platform: rainbird
23-
host: '1.1.1.1'
24-
password: 'secretpassword'
2522
sprinkler_1:
2623
zone: 1
2724
friendly_name: "Front sprinklers"
@@ -36,8 +33,6 @@ switch:
3633
3734
Configuration variables:
3835
39-
- **stickip** (*Required*): The IP address of your LNK WiFi Module.
40-
- **password** (*Required*): The password for accessing the module.
4136
- **zone** (*Required*): Station zone identifier.
4237
- **friendly_name** (*Optional*): Just a friendly name for the station.
4338
- **trigger_time** (*Required*): The default duration to sprinkle the zone.

0 commit comments

Comments
 (0)