* Using new methods for blink camera - Refactored blink platform (breaking change) - Camera needs to be uniquely enabled in config from now on - Added motion detection enable/disable to camera platform * Fix motion detection - bumped blinkpy to 0.8.1 - Added wifi strength sensor * Added platform schema to sensor - Added global variables for brand and attribution to main platform * Removed blink binary sensor * Add alarm control panel * Fixed dependency, added alarm_home * Update requirements * Fix lint errors * Updated throttle times * Add trigger_camera service (replaced snap_picture) * Add refresh after camera trigger * Update blinkpy version * Wait for valid camera response before returning image - Motion detection now working! * Updated for new blinkpy 0.9.0 * Add refresh control and other fixes for new blinkpy release * Add save video service * Pushing to force bot to update * Changed based on first review - Pass blink as BLINK_DATA instead of DOMAIN - Remove alarm_arm_home from alarm_control_panel - Re-add discovery with schema for sensors/binar_sensors - Change motion_detected to a binary_sensor - Added camera_armed binary sensor - Update camera device_state_attributes rather than state_attributes * Moved blink.py to own folder. Added service hints. * Updated coveragerc to reflect previous change * Register services with DOMAIN - Change device add for loop order in binary_sensor * Fix lint error * services.async_register -> services.register
76 lines
2 KiB
Python
76 lines
2 KiB
Python
"""
|
|
Support for Blink system camera.
|
|
|
|
For more details about this platform, please refer to the documentation at
|
|
https://home-assistant.io/components/camera.blink/
|
|
"""
|
|
import logging
|
|
|
|
from homeassistant.components.blink import BLINK_DATA, DEFAULT_BRAND
|
|
from homeassistant.components.camera import Camera
|
|
|
|
_LOGGER = logging.getLogger(__name__)
|
|
|
|
DEPENDENCIES = ['blink']
|
|
|
|
ATTR_VIDEO_CLIP = 'video'
|
|
ATTR_IMAGE = 'image'
|
|
|
|
|
|
def setup_platform(hass, config, add_entities, discovery_info=None):
|
|
"""Set up a Blink Camera."""
|
|
if discovery_info is None:
|
|
return
|
|
data = hass.data[BLINK_DATA]
|
|
devs = []
|
|
for name, camera in data.sync.cameras.items():
|
|
devs.append(BlinkCamera(data, name, camera))
|
|
|
|
add_entities(devs)
|
|
|
|
|
|
class BlinkCamera(Camera):
|
|
"""An implementation of a Blink Camera."""
|
|
|
|
def __init__(self, data, name, camera):
|
|
"""Initialize a camera."""
|
|
super().__init__()
|
|
self.data = data
|
|
self._name = "{} {}".format(BLINK_DATA, name)
|
|
self._camera = camera
|
|
self.response = None
|
|
self.current_image = None
|
|
self.last_image = None
|
|
_LOGGER.debug("Initialized blink camera %s", self._name)
|
|
|
|
@property
|
|
def name(self):
|
|
"""Return the camera name."""
|
|
return self._name
|
|
|
|
@property
|
|
def device_state_attributes(self):
|
|
"""Return the camera attributes."""
|
|
return self._camera.attributes
|
|
|
|
def enable_motion_detection(self):
|
|
"""Enable motion detection for the camera."""
|
|
self._camera.set_motion_detect(True)
|
|
|
|
def disable_motion_detection(self):
|
|
"""Disable motion detection for the camera."""
|
|
self._camera.set_motion_detect(False)
|
|
|
|
@property
|
|
def motion_detection_enabled(self):
|
|
"""Return the state of the camera."""
|
|
return self._camera.armed
|
|
|
|
@property
|
|
def brand(self):
|
|
"""Return the camera brand."""
|
|
return DEFAULT_BRAND
|
|
|
|
def camera_image(self):
|
|
"""Return a still image response from the camera."""
|
|
return self._camera.image_from_cache.content
|