Exemple #1
0
    def __init__(self, light_id=None, name=None, bridge=None, color_temp=None,
                 trans_time=None):
        super(Light, self).__init__(object_id=light_id,
                                    bridge=bridge)

        self.light_id = light_id
        self.name = name
        self.bridge = bridge
        self.rest_group = 'lights'
        self.color_temp = color_temp
        self.trans_time = trans_time

        if (self.color_temp):
            self.color_mired = kelvin_to_mired(self.color_temp)
Exemple #2
0
 def torch(self, kelvin=KELVIN_MED, secs=0, lum=LUM_MAX):
     self.put('state', {'on': True,
                        'ct': kelvin_to_mired(kelvin),
                        'bri': lum,
                        'transitiontime': secs_to_lsecs(secs)})
Exemple #3
0
 def set_kelvin(self, kelvin, secs=0):
     body = {'on': True,
             'ct': kelvin_to_mired(kelvin),
             'transitiontime': secs_to_lsecs(secs)}
     self.put('state', body)