Wireless Sensor Tags
The wirelesstag
implementation allows you to integrate your wirelesstag.net sensors tags in Home Assistant.
There is currently support for the following device types within Home Assistant:
Configuration
To enable tags set up with your wirelesstag.net account, add the following to your configuration.yaml
file:
# Example configuration.yaml entry
wirelesstag:
username: [email protected]
password: secret
To enable local push notifications from the Tags Manager, you need to add the IP address of the Tags Manager into trusted_networks
under Authentication Providers. See the Authentication Providers for details.
If you are using a version prior to v0.89 you can do the whitelisting under the HTTP integration.
Additionally, you need to add at least one WirelessTag binary sensor in the configuration to start receiving local push notifications.
Tags Manager supports local push notifications for http
schema only. So if your Home Assistant uses https
, local push notifications are disabled and data is received via cloud polling.
Binary Sensor
To enable the binary sensor platform for your tags, set up with your wirelesstag.net account. Add the following to your configuration.yaml
file:
# Example configuration.yaml entry
binary_sensor:
- platform: wirelesstag
monitored_conditions:
- presence
- door
- battery
Sensor
To enable the sensor platform for your tags, set up with your wirelesstag.net account. Add the following to your configuration.yaml
file:
# Example configuration.yaml entry
sensor:
- platform: wirelesstag
monitored_conditions:
- temperature
- humidity
Switch
To enable the switch platform for your tags, set up with your wirelesstag.net account. Add the following to your configuration.yaml
file:
# Example configuration.yaml entry
switch:
- platform: wirelesstag
monitored_conditions:
- motion
- humidity
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.
Suggest an edit to this page, or provide/view feedback for this page.