diff --git a/config/.HA_VERSION b/config/.HA_VERSION index c49d7f91..a9ca1dcc 100755 --- a/config/.HA_VERSION +++ b/config/.HA_VERSION @@ -1 +1 @@ -0.64.3 \ No newline at end of file +0.65.2 \ No newline at end of file diff --git a/config/custom_components/binary_sensor/skybell.py b/config/custom_components/binary_sensor/skybell.py deleted file mode 100755 index 05e676d2..00000000 --- a/config/custom_components/binary_sensor/skybell.py +++ /dev/null @@ -1,97 +0,0 @@ -""" -Binary sensor support for the Skybell HD Doorbell. - -For more details about this platform, please refer to the documentation at -https://home-assistant.io/components/binary_sensor.skybell/ -""" -from datetime import timedelta -import logging - -import voluptuous as vol - -from homeassistant.components.binary_sensor import ( - BinarySensorDevice, PLATFORM_SCHEMA) -from homeassistant.components.skybell import ( - DEFAULT_ENTITY_NAMESPACE, DOMAIN as SKYBELL_DOMAIN, SkybellDevice) -from homeassistant.const import ( - CONF_ENTITY_NAMESPACE, CONF_MONITORED_CONDITIONS) -import homeassistant.helpers.config_validation as cv - -DEPENDENCIES = ['skybell'] - -_LOGGER = logging.getLogger(__name__) - -SCAN_INTERVAL = timedelta(seconds=5) - -# Sensor types: Name, device_class, event -SENSOR_TYPES = { - 'button': ['Button', 'occupancy', 'device:sensor:button'], - 'motion': ['Motion', 'motion', 'device:sensor:motion'], -} - -PLATFORM_SCHEMA = PLATFORM_SCHEMA.extend({ - vol.Optional(CONF_ENTITY_NAMESPACE, default=DEFAULT_ENTITY_NAMESPACE): - cv.string, - vol.Required(CONF_MONITORED_CONDITIONS, default=[]): - vol.All(cv.ensure_list, [vol.In(SENSOR_TYPES)]), -}) - - -def setup_platform(hass, config, add_devices, discovery_info=None): - """Set up the platform for a Skybell device.""" - skybell = hass.data.get(SKYBELL_DOMAIN) - - sensors = [] - for sensor_type in config.get(CONF_MONITORED_CONDITIONS): - for device in skybell.get_devices(): - sensors.append(SkybellBinarySensor(device, sensor_type)) - - add_devices(sensors, True) - - -class SkybellBinarySensor(SkybellDevice, BinarySensorDevice): - """A binary sensor implementation for Skybell devices.""" - - def __init__(self, device, sensor_type): - """Initialize a binary sensor for a Skybell device.""" - super().__init__(device) - self._sensor_type = sensor_type - self._name = "{0} {1}".format(self._device.name, - SENSOR_TYPES[self._sensor_type][0]) - self._device_class = SENSOR_TYPES[self._sensor_type][1] - self._event = {} - self._state = None - - @property - def name(self): - """Return the name of the sensor.""" - return self._name - - @property - def is_on(self): - """Return True if the binary sensor is on.""" - return self._state - - @property - def device_class(self): - """Return the class of the binary sensor.""" - return self._device_class - - @property - def device_state_attributes(self): - """Return the state attributes.""" - attrs = super().device_state_attributes - -# attrs['event_date'] = self._event.get('createdAt') - - return attrs - - def update(self): - """Get the latest data and updates the state.""" - super().update() - - event = self._device.latest(SENSOR_TYPES[self._sensor_type][2]) - - self._state = bool(event and event.get('id') != self._event.get('id')) - - self._event = event diff --git a/config/packages/skybellhd.yaml b/config/packages/skybellhd.yaml index 7d998a78..b654f2c0 100755 --- a/config/packages/skybellhd.yaml +++ b/config/packages/skybellhd.yaml @@ -50,7 +50,7 @@ sensor: switch: - platform: skybell monitored_conditions: - - do_not_disturb +# - do_not_disturb - motion_sensor ################################### diff --git a/config/www/custom_ui/floorplan/images/branding/Bearicon.png b/config/www/custom_ui/floorplan/images/branding/Bearicon.png new file mode 100755 index 00000000..5ec90924 Binary files /dev/null and b/config/www/custom_ui/floorplan/images/branding/Bearicon.png differ