from platypush.plugins import action from platypush.plugins.gpio.sensor import GpioSensorPlugin class GpioSensorLtr559Plugin(GpioSensorPlugin): """ Plugin to interact with an `LTR559 `_ light and proximity sensor Requires: * ``ltr559`` (``pip install ltr559``) """ def __init__(self, **kwargs): super().__init__(**kwargs) # noinspection PyUnresolvedReferences @action def get_measurement(self): """ :returns: dict. Example: .. code-block:: python output = { "light": 109.3543, # Lux "proximity": 103 # The higher the value, the nearest the object, within a ~5cm range } """ import ltr559 ltr559.set_proximity_active() return { 'light': ltr559.get_lux(), 'proximity': ltr559.get_proximity(), } # vim:sw=4:ts=4:et: