55 lines
1.8 KiB
Python
55 lines
1.8 KiB
Python
"""
|
|
Support for tracking MySensors devices.
|
|
|
|
For more details about this platform, please refer to the documentation at
|
|
https://home-assistant.io/components/device_tracker.mysensors/
|
|
"""
|
|
from homeassistant.components import mysensors
|
|
from homeassistant.components.device_tracker import DOMAIN
|
|
from homeassistant.helpers.dispatcher import async_dispatcher_connect
|
|
from homeassistant.util import slugify
|
|
|
|
|
|
async def async_setup_scanner(hass, config, async_see, discovery_info=None):
|
|
"""Set up the MySensors device scanner."""
|
|
new_devices = mysensors.setup_mysensors_platform(
|
|
hass, DOMAIN, discovery_info, MySensorsDeviceScanner,
|
|
device_args=(async_see, ))
|
|
if not new_devices:
|
|
return False
|
|
|
|
for device in new_devices:
|
|
dev_id = (
|
|
id(device.gateway), device.node_id, device.child_id,
|
|
device.value_type)
|
|
async_dispatcher_connect(
|
|
hass, mysensors.const.SIGNAL_CALLBACK.format(*dev_id),
|
|
device.async_update_callback)
|
|
|
|
return True
|
|
|
|
|
|
class MySensorsDeviceScanner(mysensors.device.MySensorsDevice):
|
|
"""Represent a MySensors scanner."""
|
|
|
|
def __init__(self, async_see, *args):
|
|
"""Set up instance."""
|
|
super().__init__(*args)
|
|
self.async_see = async_see
|
|
|
|
async def async_update_callback(self):
|
|
"""Update the device."""
|
|
await self.async_update()
|
|
node = self.gateway.sensors[self.node_id]
|
|
child = node.children[self.child_id]
|
|
position = child.values[self.value_type]
|
|
latitude, longitude, _ = position.split(',')
|
|
|
|
await self.async_see(
|
|
dev_id=slugify(self.name),
|
|
host_name=self.name,
|
|
gps=(latitude, longitude),
|
|
battery=node.battery_level,
|
|
attributes=self.device_state_attributes
|
|
)
|