mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-07-15 21:36:52 +00:00
Added Unifi direct documentation
This commit is contained in:
parent
5ab2ca280b
commit
ba7907f784
36
source/_components/device_tracker.unifi_direct.markdown
Normal file
36
source/_components/device_tracker.unifi_direct.markdown
Normal file
@ -0,0 +1,36 @@
|
|||||||
|
---
|
||||||
|
layout: page
|
||||||
|
title: "Ubiquiti Unifi direct AP"
|
||||||
|
description: "Instructions how to use a Unifi WAP as a device tracker."
|
||||||
|
date: 2017-11-17 14:59
|
||||||
|
sidebar: true
|
||||||
|
comments: false
|
||||||
|
sharing: true
|
||||||
|
footer: true
|
||||||
|
logo: ubiquiti.png
|
||||||
|
ha_category: Presence Detection
|
||||||
|
ha_release: 0.58
|
||||||
|
---
|
||||||
|
|
||||||
|
|
||||||
|
This platform allows you to detect presence by looking at devices connected to a [UniFi AP](http://ubnt.com/unifi-ap/). This device tracker differs form [Ubiquiti Unifi WAP](https://home-assistant.io/components/device_tracker.unifi/) because it doesn't require the Unifi controller software.
|
||||||
|
|
||||||
|
To use this device tracker in your installation, add the following to your `configuration.yaml` file:
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
# Example configuration.yaml entry
|
||||||
|
device_tracker:
|
||||||
|
- platform: unifi_direct
|
||||||
|
host: YOUR_AP_IP_ADDRESS
|
||||||
|
username: YOUR_USERNAME
|
||||||
|
password: YOUR_PASSWORD
|
||||||
|
```
|
||||||
|
|
||||||
|
Configuration variables:
|
||||||
|
|
||||||
|
- **host** (*Required*): The hostname or IP address of your controller.
|
||||||
|
- **username** (*Required*: The username used to connect to the AP.
|
||||||
|
- **password** (*Required*): The password you created for the AP.
|
||||||
|
|
||||||
|
See the [device tracker component page](/components/device_tracker/) for instructions how to configure the people to be tracked.
|
||||||
|
|
@ -1,46 +1,46 @@
|
|||||||
---
|
---
|
||||||
layout: page
|
layout: page
|
||||||
title: "Rain Bird Switch"
|
title: "Rain Bird Switch"
|
||||||
description: "Instructions on how to integrate your Rain Bird LNK WiFi Module as Switches within Home Assistant."
|
description: "Instructions on how to integrate your Rain Bird LNK WiFi Module as Switches within Home Assistant."
|
||||||
date: 2017-08-25 12:00
|
date: 2017-08-25 12:00
|
||||||
sidebar: true
|
sidebar: true
|
||||||
comments: false
|
comments: false
|
||||||
sharing: true
|
sharing: true
|
||||||
footer: true
|
footer: true
|
||||||
logo: rainbird.png
|
logo: rainbird.png
|
||||||
ha_category: Hub
|
ha_category: Hub
|
||||||
ha_release: 0.57
|
ha_release: 0.57
|
||||||
ha_iot_class: "Local Polling"
|
ha_iot_class: "Local Polling"
|
||||||
---
|
---
|
||||||
|
|
||||||
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.
|
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.
|
||||||
|
|
||||||
To enable stations as switches inside Home Assistant, add the following to your `configuration.yaml` file:
|
To enable stations as switches inside Home Assistant, add the following to your `configuration.yaml` file:
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
switch:
|
switch:
|
||||||
platform: rainbird
|
platform: rainbird
|
||||||
host: '1.1.1.1'
|
host: '1.1.1.1'
|
||||||
password: 'secretpassword'
|
password: 'secretpassword'
|
||||||
sprinkler_1:
|
sprinkler_1:
|
||||||
zone: 1
|
zone: 1
|
||||||
friendly_name: "Front sprinklers"
|
friendly_name: "Front sprinklers"
|
||||||
trigger_time: 20
|
trigger_time: 20
|
||||||
scan_interval: 10
|
scan_interval: 10
|
||||||
sprinkler_2:
|
sprinkler_2:
|
||||||
friendly_name: "Back sprinklers"
|
friendly_name: "Back sprinklers"
|
||||||
zone: 2
|
zone: 2
|
||||||
trigger_time: 20
|
trigger_time: 20
|
||||||
scan_interval: 10
|
scan_interval: 10
|
||||||
```
|
```
|
||||||
|
|
||||||
Configuration variables:
|
Configuration variables:
|
||||||
|
|
||||||
- **stickip** (*Required*): The IP address of your LNK WiFi Module.
|
- **stickip** (*Required*): The IP address of your LNK WiFi Module.
|
||||||
- **password** (*Required*): The password for accessing the module.
|
- **password** (*Required*): The password for accessing the module.
|
||||||
- **zone** (*Required*): Station zone identifier.
|
- **zone** (*Required*): Station zone identifier.
|
||||||
- **friendly_name** (*Optional*): Just a friendly name for the station.
|
- **friendly_name** (*Optional*): Just a friendly name for the station.
|
||||||
- **trigger_time** (*Required*): The default duration to sprinkle the zone.
|
- **trigger_time** (*Required*): The default duration to sprinkle the zone.
|
||||||
- **scan_interval** (*Optional*): How fast to refresh the switch.
|
- **scan_interval** (*Optional*): How fast to refresh the switch.
|
||||||
|
|
||||||
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).
|
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).
|
||||||
|
Loading…
x
Reference in New Issue
Block a user