Skip to content

Commit

Permalink
Merge pull request home-assistant#1473 from balloob/add_wemo_motion
Browse files Browse the repository at this point in the history
Add Wemo Motion device as a binary sensor.
  • Loading branch information
pavoni committed Mar 10, 2016
2 parents 8af7858 + 84bdba2 commit 534308e
Show file tree
Hide file tree
Showing 3 changed files with 80 additions and 4 deletions.
3 changes: 2 additions & 1 deletion homeassistant/components/binary_sensor/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
from homeassistant.helpers.entity_component import EntityComponent
from homeassistant.helpers.entity import Entity
from homeassistant.const import (STATE_ON, STATE_OFF)
from homeassistant.components import (bloomsky, mysensors, zwave, wink)
from homeassistant.components import (bloomsky, mysensors, zwave, wemo, wink)

DOMAIN = 'binary_sensor'
SCAN_INTERVAL = 30
Expand Down Expand Up @@ -37,6 +37,7 @@
bloomsky.DISCOVER_BINARY_SENSORS: 'bloomsky',
mysensors.DISCOVER_BINARY_SENSORS: 'mysensors',
zwave.DISCOVER_BINARY_SENSORS: 'zwave',
wemo.DISCOVER_BINARY_SENSORS: 'wemo',
wink.DISCOVER_BINARY_SENSORS: 'wink'
}

Expand Down
75 changes: 75 additions & 0 deletions homeassistant/components/binary_sensor/wemo.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,75 @@
"""
Support for WeMo sensors.
For more details about this component, please refer to the documentation at
https://home-assistant.io/components/binary_sensor.wemo/
"""
import logging

from homeassistant.components.binary_sensor import BinarySensorDevice
from homeassistant.loader import get_component

DEPENDENCIES = ['wemo']

_LOGGER = logging.getLogger(__name__)


# pylint: disable=unused-argument, too-many-function-args
def setup_platform(hass, config, add_devices_callback, discovery_info=None):
"""Register discovered WeMo binary sensors."""
import pywemo.discovery as discovery

if discovery_info is not None:
location = discovery_info[2]
mac = discovery_info[3]
device = discovery.device_from_description(location, mac)

if device:
add_devices_callback([WemoBinarySensor(device)])


class WemoBinarySensor(BinarySensorDevice):
"""Represents a WeMo binary sensor."""

def __init__(self, device):
"""Initialize the WeMo sensor."""
self.wemo = device
self._state = None

wemo = get_component('wemo')
wemo.SUBSCRIPTION_REGISTRY.register(self.wemo)
wemo.SUBSCRIPTION_REGISTRY.on(self.wemo, None, self._update_callback)

def _update_callback(self, _device, _params):
"""Called by the wemo device callback to update state."""
_LOGGER.info(
'Subscription update for %s',
_device)
self.update_ha_state(True)

@property
def should_poll(self):
"""No polling needed with subscriptions."""
return False

@property
def unique_id(self):
"""Return the id of this WeMo device."""
return "{}.{}".format(self.__class__, self.wemo.serialnumber)

@property
def name(self):
"""Return the name of the sevice if any."""
return self.wemo.name

@property
def is_on(self):
"""True if sensor is on."""
return self._state

def update(self):
"""Update WeMo state."""
try:
self._state = self.wemo.get_state(True)
except AttributeError:
_LOGGER.warning('Could not update status for %s', self.name)
6 changes: 3 additions & 3 deletions homeassistant/components/wemo.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,21 +13,21 @@

DOMAIN = 'wemo'
DISCOVER_LIGHTS = 'wemo.light'
DISCOVER_MOTION = 'wemo.motion'
DISCOVER_BINARY_SENSORS = 'wemo.binary_sensor'
DISCOVER_SWITCHES = 'wemo.switch'

# Mapping from Wemo model_name to service.
WEMO_MODEL_DISPATCH = {
'Bridge': DISCOVER_LIGHTS,
'Insight': DISCOVER_SWITCHES,
'Maker': DISCOVER_SWITCHES,
'Motion': DISCOVER_MOTION,
'Sensor': DISCOVER_BINARY_SENSORS,
'Socket': DISCOVER_SWITCHES,
'LightSwitch': DISCOVER_SWITCHES
}
WEMO_SERVICE_DISPATCH = {
DISCOVER_LIGHTS: 'light',
DISCOVER_MOTION: 'binary_sensor',
DISCOVER_BINARY_SENSORS: 'binary_sensor',
DISCOVER_SWITCHES: 'switch',
}

Expand Down

0 comments on commit 534308e

Please sign in to comment.