
* 🔥 Removes octopress.js * 🔥 Removes use of root_url var * 🔥 Removes Octopress generator reference from feed * 🔥 Removes delicious support * 🔥 Removes support for Pinboard * 🔥 Removes support for Disqus * 🔥 Removes support for Google Plus * ↩️ Migrate custom after_footer to default template * ↩️ Migrate custom footer to default template * ↩️ Migrate custom header to default template * 🔥 Removes unused template files * 🚀 Places time to read directly in post template * 🚀 Removes unneeded capture from archive_post.html template * 🔥 🚀 Removes unused, but heaving sorting call in component page * 🚀 Merged javascripts into a single file * 🔥 Removes more uses of root_url * 🚀 Removal of unneeded captures from head * 🔥 🚀 Removal of expensive liquid HTML compressor * 🔥 Removes unneeded templates * 🚀 Replaces kramdown with GitHub's CommonMark 🚀 * 💄 Adds Prism code syntax highlighting * ✨ Adds support for redirect in Netlify * ↩️ 🔥 Let Netlify handle all developer doc redirects * ✏️ Fixes typo in redirects file: Netify -> Netlify * 🔥 Removes unused .themes folder * 🔥 Removes unused aside.html template * 🔥 Removes Disqus config leftover * 🔥 Removes rouge highlighter config * 🔥 Removes Octopress 🎉 * 💄 Adjust code block font size and adds soft wraps * 💄 Adds styling for inline code blocks * 💄 Improve styling of note/warning/info boxes + div support * 🔨 Rewrites all note/warning/info boxes
2.8 KiB
title, description, logo, ha_category, ha_release, ha_iot_class, redirect_from
title | description | logo | ha_category | ha_release | ha_iot_class | redirect_from | |||||
---|---|---|---|---|---|---|---|---|---|---|---|
Rain Bird | Instructions on how to integrate your Rain Bird LNK WiFi Module within Home Assistant. | rainbird.png |
|
0.61 | Local Polling |
|
This rainbird
integration allows interacting with LNK WiFi module of the Rain Bird Irrigation system in Home Assistant.
There is currently support for the following device types within Home Assistant:
Configuration
To enable it, add the following to your configuration.yaml
file:
# Example configuration.yaml entry
rainbird:
host: IP_ADDRESS_OF_MODULE
password: YOUR_PASSWORD
{% configuration %} host: description: IP Address of the Module required: true type: string password: description: The password for accessing the module. required: true type: string {% endconfiguration %}
Sensor
This rainbird
sensor allows interacting with LNK WiFi module of the Rain Bird Irrigation system in Home Assistant.
Add the following to your configuration.yaml
file to enable the rain sensor:
# Example configuration.yaml entry
sensor:
- platform: rainbird
monitored_conditions:
- rainsensor
{% configuration %} monitored_conditions: description: Conditions to be monitored. keys: rainsensor: description: Returns the sensor level. {% endconfiguration %}
Switch
This rainbird
switch platform allows interacting with LNK WiFi module of the Rain Bird Irrigation system in Home Assistant.
Add the following to your configuration.yaml
file to use the switch platform:
switch:
- platform: rainbird
switches:
sprinkler_1:
zone: 1
friendly_name: "Front sprinklers"
trigger_time: 10
scan_interval: 10
sprinkler_2:
friendly_name: "Back sprinklers"
zone: 2
trigger_time: 20
scan_interval: 10
{% configuration %} zone: description: Station zone identifier. required: true type: string friendly_name: description: Just a friendly name for the station. required: false type: string trigger_time: description: The default duration to sprinkle the zone in minutes. required: true type: integer scan_interval: description: How fast to refresh the switch in minutes. required: false type: integer {% endconfiguration %}