mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-07-18 14:56:53 +00:00
🚜 Merges/Redirect WirelessTag component pages (#8739)
This commit is contained in:
parent
ae985d87a3
commit
b180faf42f
@ -1,58 +0,0 @@
|
||||
---
|
||||
layout: page
|
||||
title: "WirelessTag Binary Sensor"
|
||||
description: "Instructions on how to integrate Wireless Tags sensors within Home Assistant."
|
||||
date: 2018-03-26 21:49
|
||||
comments: false
|
||||
sidebar: true
|
||||
sharing: true
|
||||
footer: true
|
||||
logo: wirelesstag.png
|
||||
ha_category: Binary Sensor
|
||||
ha_iot_class: "Local Push and Cloud Polling"
|
||||
ha_release: 0.68
|
||||
---
|
||||
|
||||
To get your [wirelesstag.net](http://wirelesstag.net) binary sensors working within Home Assistant, please follow the instructions for the general [WirelessTag component](/components/wirelesstag).
|
||||
|
||||
## {% linkable_title Configuration %}
|
||||
|
||||
To enable tags set up with your [wirelesstag.net](http://wirelesstag.net) account, add the following to your `configuration.yaml` file:
|
||||
|
||||
```yaml
|
||||
# Example configuration.yaml entry
|
||||
binary_sensor:
|
||||
- platform: wirelesstag
|
||||
monitored_conditions:
|
||||
- presence
|
||||
- door
|
||||
- battery
|
||||
```
|
||||
|
||||
{% configuration %}
|
||||
monitored_conditions:
|
||||
description: The conditions types to monitor.
|
||||
required: true
|
||||
type: list
|
||||
keys:
|
||||
presence:
|
||||
description: On means in range, Off means out of range.
|
||||
motion:
|
||||
description: On when a movement was detected, Off when clear.
|
||||
door:
|
||||
description: On when a door is open, Off when the door is closed.
|
||||
cold:
|
||||
description: On means temperature become too cold, Off means normal.
|
||||
heat:
|
||||
description: On means hot, Off means normal.
|
||||
dry:
|
||||
description: On means too dry (humidity), Off means normal.
|
||||
wet:
|
||||
description: On means too wet (humidity), Off means normal.
|
||||
light:
|
||||
description: On means light detected, Off means no light.
|
||||
moisture:
|
||||
description: On means moisture detected (wet), Off means no moisture (dry).
|
||||
battery:
|
||||
description: On means tag battery is low, Off means normal.
|
||||
{% endconfiguration %}
|
@ -1,45 +0,0 @@
|
||||
---
|
||||
layout: page
|
||||
title: "WirelessTag Sensor"
|
||||
description: "Instructions on how to integrate your Wireless Tags sensors within Home Assistant."
|
||||
date: 2018-03-26 21:50
|
||||
comments: false
|
||||
sidebar: true
|
||||
sharing: true
|
||||
footer: true
|
||||
logo: wirelesstag.png
|
||||
ha_category: Sensor
|
||||
ha_iot_class: "Local Push and Cloud Polling"
|
||||
ha_release: 0.68
|
||||
---
|
||||
|
||||
To get your [wirelesstag.net](http://wirelesstag.net) sensors working within Home Assistant, please follow the instructions for the general [WirelessTag component](/components/wirelesstag).
|
||||
|
||||
## {% linkable_title Configuration %}
|
||||
|
||||
To enable tags set up with your [wirelesstag.net](http://wirelesstag.net) account, add the following to your `configuration.yaml` file:
|
||||
|
||||
```yaml
|
||||
# Example configuration.yaml entry
|
||||
sensor:
|
||||
- platform: wirelesstag
|
||||
monitored_conditions:
|
||||
- temperature
|
||||
- humidity
|
||||
```
|
||||
|
||||
{% configuration %}
|
||||
monitored_conditions:
|
||||
description: The metrics types to monitor.
|
||||
required: true
|
||||
type: list
|
||||
keys:
|
||||
temperature:
|
||||
description: Value is in Celsius or Fahrenheit (according to your settings at Tag Manager).
|
||||
humidity:
|
||||
description: "Humidity level in %."
|
||||
moisture:
|
||||
description: "Water level/soil moisture in % (applicable for Water Tag only)."
|
||||
light:
|
||||
description: Brightness in lux (if supported by tag).
|
||||
{% endconfiguration %}
|
@ -1,48 +0,0 @@
|
||||
---
|
||||
layout: page
|
||||
title: "WirelessTag Switch"
|
||||
description: "Instructions on how to integrate your Wireless Tags sensors within Home Assistant."
|
||||
date: 2018-03-26 21:52
|
||||
comments: false
|
||||
sidebar: true
|
||||
sharing: true
|
||||
footer: true
|
||||
logo: wirelesstag.png
|
||||
ha_category: Switch
|
||||
ha_iot_class: "Local Push and Cloud Polling"
|
||||
ha_release: 0.68
|
||||
---
|
||||
|
||||
To get your [wirelesstag.net](http://wirelesstag.net) switches working within Home Assistant, please follow the instructions for the general [WirelessTag component](/components/wirelesstag).
|
||||
|
||||
To enable tags set up with your [wirelesstag.net](http://wirelesstag.net) account, add the following to your `configuration.yaml` file:
|
||||
|
||||
```yaml
|
||||
# Example configuration.yaml entry
|
||||
switch:
|
||||
- platform: wirelesstag
|
||||
monitored_conditions:
|
||||
- motion
|
||||
- humidity
|
||||
```
|
||||
|
||||
{% configuration %}
|
||||
monitored_conditions:
|
||||
description: The metrics types to control.
|
||||
required: true
|
||||
type: list
|
||||
keys:
|
||||
temperature:
|
||||
description: Control arm/disarm temperature monitoring.
|
||||
humidity:
|
||||
description: Control arm/disarm humidity monitoring.
|
||||
motion:
|
||||
description: Control arm/disarm motion and door open/close events monitoring.
|
||||
light:
|
||||
description: Control monitoring of light changes.
|
||||
moisture:
|
||||
description: Control monitoring of water level/soil moisture for water sensor.
|
||||
{% endconfiguration %}
|
||||
|
||||
Arm/Disarm of motion switch is required to receive motion and door binary sensors events.
|
||||
Others are only needed if you want to receive push notifications from tags on a specific range of changes in temperature, humidity, light or moisture.
|
@ -8,13 +8,27 @@ sidebar: true
|
||||
sharing: true
|
||||
footer: true
|
||||
logo: wirelesstag.png
|
||||
ha_category: Hub
|
||||
ha_category:
|
||||
- Hub
|
||||
- Binary Sensor
|
||||
- Sensor
|
||||
- Switch
|
||||
ha_iot_class: "Local Push and Cloud Polling"
|
||||
ha_release: 0.68
|
||||
redirect_from:
|
||||
- /components/binary_sensor.wirelesstag/
|
||||
- /components/sensor.wirelesstag/
|
||||
- /components/switch.wirelesstag/
|
||||
---
|
||||
|
||||
The `wirelesstag` implementation allows you to integrate your [wirelesstag.net](http://wirelesstag.net) sensors tags in Home Assistant.
|
||||
|
||||
There is currently support for the following device types within Home Assistant:
|
||||
|
||||
- [Binary Sensor](#binary-sensor)
|
||||
- [Sensor](#sensor)
|
||||
- [Switch](#switch)
|
||||
|
||||
## {% linkable_title Configuration %}
|
||||
|
||||
To enable tags set up with your [wirelesstag.net](http://wirelesstag.net) account, add the following to your `configuration.yaml` file:
|
||||
@ -37,13 +51,116 @@ password:
|
||||
type: string
|
||||
{% endconfiguration %}
|
||||
|
||||
Finish your configuration by visiting the [WirelessTag binary sensor](/components/binary_sensor.wirelesstag/), [WirelessTag sensor](/components/sensor.wirelesstag/), or [WirelessTag switch](/components/switch.wirelesstag/) documentation.
|
||||
|
||||
<p class='note'>
|
||||
To enable local push notifications from the Tags Manager, you need to add the IP address of the Tags Manager into whitelist in `http` component; i.e., add it to `trusted_networks`. See the [HTTP](/components/http/) for details.
|
||||
Additionally, you need add at least one [WirelessTag binary sensor](/components/binary_sensor.wirelesstag/) in config to start receiving local push notifications.
|
||||
Additionally, you need add at least one [WirelessTag binary sensor](#binary-sensor) in config to start receiving local push notifications.
|
||||
</p>
|
||||
|
||||
<p class='note warning'>
|
||||
Tags Manager supports local push notifications for `http` schema only. So if your hass uses `https`, local push notifications are disabled and data is received via cloud polling.
|
||||
</p>
|
||||
|
||||
## {% linkable_title Binary Sensor %}
|
||||
|
||||
To enable the binary sensor platform for your tags, set up with your [wirelesstag.net](http://wirelesstag.net) account. Add the following to your `configuration.yaml` file:
|
||||
|
||||
```yaml
|
||||
# Example configuration.yaml entry
|
||||
binary_sensor:
|
||||
- platform: wirelesstag
|
||||
monitored_conditions:
|
||||
- presence
|
||||
- door
|
||||
- battery
|
||||
```
|
||||
|
||||
{% configuration %}
|
||||
monitored_conditions:
|
||||
description: The conditions types to monitor.
|
||||
required: true
|
||||
type: list
|
||||
keys:
|
||||
presence:
|
||||
description: On means in range, Off means out of range.
|
||||
motion:
|
||||
description: On when a movement was detected, Off when clear.
|
||||
door:
|
||||
description: On when a door is open, Off when the door is closed.
|
||||
cold:
|
||||
description: On means temperature become too cold, Off means normal.
|
||||
heat:
|
||||
description: On means hot, Off means normal.
|
||||
dry:
|
||||
description: On means too dry (humidity), Off means normal.
|
||||
wet:
|
||||
description: On means too wet (humidity), Off means normal.
|
||||
light:
|
||||
description: On means light detected, Off means no light.
|
||||
moisture:
|
||||
description: On means moisture detected (wet), Off means no moisture (dry).
|
||||
battery:
|
||||
description: On means tag battery is low, Off means normal.
|
||||
{% endconfiguration %}
|
||||
|
||||
## {% linkable_title Sensor %}
|
||||
|
||||
To enable the sensor platform for your tags, set up with your [wirelesstag.net](http://wirelesstag.net) account. Add the following to your `configuration.yaml` file:
|
||||
|
||||
```yaml
|
||||
# Example configuration.yaml entry
|
||||
sensor:
|
||||
- platform: wirelesstag
|
||||
monitored_conditions:
|
||||
- temperature
|
||||
- humidity
|
||||
```
|
||||
|
||||
{% configuration %}
|
||||
monitored_conditions:
|
||||
description: The metrics types to monitor.
|
||||
required: true
|
||||
type: list
|
||||
keys:
|
||||
temperature:
|
||||
description: Value is in Celsius or Fahrenheit (according to your settings at Tag Manager).
|
||||
humidity:
|
||||
description: "Humidity level in %."
|
||||
moisture:
|
||||
description: "Water level/soil moisture in % (applicable for Water Tag only)."
|
||||
light:
|
||||
description: Brightness in lux (if supported by tag).
|
||||
{% endconfiguration %}
|
||||
|
||||
## {% linkable_title Switch %}
|
||||
|
||||
To enable the switch platform for your tags, set up with your [wirelesstag.net](http://wirelesstag.net) account. Add the following to your `configuration.yaml` file:
|
||||
|
||||
```yaml
|
||||
# Example configuration.yaml entry
|
||||
switch:
|
||||
- platform: wirelesstag
|
||||
monitored_conditions:
|
||||
- motion
|
||||
- humidity
|
||||
```
|
||||
|
||||
{% configuration %}
|
||||
monitored_conditions:
|
||||
description: The metrics types to control.
|
||||
required: true
|
||||
type: list
|
||||
keys:
|
||||
temperature:
|
||||
description: Control arm/disarm temperature monitoring.
|
||||
humidity:
|
||||
description: Control arm/disarm humidity monitoring.
|
||||
motion:
|
||||
description: Control arm/disarm motion and door open/close events monitoring.
|
||||
light:
|
||||
description: Control monitoring of light changes.
|
||||
moisture:
|
||||
description: Control monitoring of water level/soil moisture for water sensor.
|
||||
{% endconfiguration %}
|
||||
|
||||
Arm/Disarm of motion switch is required to receive motion and door binary sensors events.
|
||||
Others are only needed if you want to receive push notifications from tags on a specific range of changes in temperature, humidity, light or moisture.
|
Loading…
x
Reference in New Issue
Block a user