Wireless Sensor Tags


The Wireless Sensor Tags integrationIntegrations connect and integrate Home Assistant with your devices, services, and more.
[Learn more]
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

Configuration Variables

username string Required

Username for your wirelesstag.net account.

password string Required

Password for your wirelesstag.net account.

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

Configuration Variables

monitored_conditions list Required

The conditions types to monitor.

presence

On means in range, Off means out of range.

motion

On when a movement was detected, Off when clear.

door

On when a door is open, Off when the door is closed.

cold

On means temperature become too cold, Off means normal.

heat

On means hot, Off means normal.

dry

On means too dry (humidity), Off means normal.

wet

On means too wet (humidity), Off means normal.

light

On means light detected, Off means no light.

moisture

On means moisture detected (wet), Off means no moisture (dry).

battery

On means tag battery is low, Off means normal.

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

Configuration Variables

monitored_conditions list Required

The metrics types to monitor.

temperature

Value is in Celsius or Fahrenheit (according to your settings at Tag Manager).

humidity

Humidity level in %.

moisture

Water level/soil moisture in % (applicable for Water Tag only).

light

Brightness in lux (if supported by tag).

ambient_temperature

If your device is Outdoor Probe with ambient temperature - use this sensor.

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

Configuration Variables

monitored_conditions list Required

The metrics types to control.

temperature

Control arm/disarm temperature monitoring.

humidity

Control arm/disarm humidity monitoring.

motion

Control arm/disarm motion and door open/close events monitoring.

light

Control monitoring of light changes.

moisture

Control monitoring of water level/soil moisture for water sensor.

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.