* Refactor mysensors callback and add validation * Add mysensors entity class. The mysensors entity class inherits from a more general mysensors device class. * Extract mysensors name function. * Add setup_mysensors_platform for mysensors platforms. * Add mysensors const schemas. * Update mysensors callback and add child validation. * Remove gateway wrapper class. * Add better logging for mysensors callback. * Add discover_persistent_devices function. * Remove discovery in mysensors component setup. * Clean up gateway storage in hass.data. * Update all mysensors platforms. * Add repr for MySensorsNotificationDevice. * Fix bug in mysensors climate target temperatures. * Clean up platforms. Child validation simplifies assumptions in platforms. * Remove not needed try except statements. All messages are validated already in pymysensors. * Clean up logging. * Add timer debug logging if callback is slow. * Upgrade pymysensors to 0.11.0. * Make dispatch callback async * Pass tuple device_args and optional add_devices * Also return new_devices as list instead of dictionary.
54 lines
1.7 KiB
Python
54 lines
1.7 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 dispatcher_connect
|
|
from homeassistant.util import slugify
|
|
|
|
|
|
def setup_scanner(hass, config, see, discovery_info=None):
|
|
"""Set up the MySensors device scanner."""
|
|
new_devices = mysensors.setup_mysensors_platform(
|
|
hass, DOMAIN, discovery_info, MySensorsDeviceScanner,
|
|
device_args=(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)
|
|
dispatcher_connect(
|
|
hass, mysensors.SIGNAL_CALLBACK.format(*dev_id),
|
|
device.update_callback)
|
|
|
|
return True
|
|
|
|
|
|
class MySensorsDeviceScanner(mysensors.MySensorsDevice):
|
|
"""Represent a MySensors scanner."""
|
|
|
|
def __init__(self, see, *args):
|
|
"""Set up instance."""
|
|
super().__init__(*args)
|
|
self.see = see
|
|
|
|
def update_callback(self):
|
|
"""Update the device."""
|
|
self.update()
|
|
node = self.gateway.sensors[self.node_id]
|
|
child = node.children[self.child_id]
|
|
position = child.values[self.value_type]
|
|
latitude, longitude, _ = position.split(',')
|
|
|
|
self.see(
|
|
dev_id=slugify(self.name),
|
|
host_name=self.name,
|
|
gps=(latitude, longitude),
|
|
battery=node.battery_level,
|
|
attributes=self.device_state_attributes
|
|
)
|