Source code for caspia.meadow.services.sensors.light
from ..base import Characteristic, ServiceBase
[docs]class LightSensorBase(ServiceBase):
""" Represents a light sensor. """
type = 'light-sensor'
light = Characteristic('float', 'RN')