1
+ from adapters .on_off_switch_adapter import OnOffSwitchAdapter
1
2
from adapters .dimmable_bulb_adapter import DimmableBulbAdapter
2
3
from adapters .dimmable_ct_bulb_adapter import DimmableCtBulbAdapter
3
4
from adapters .rgb_adapter import RGBAdapter
7
8
8
9
9
10
philips_adapters = {
11
+ '046677476816' : DimmableBulbAdapter , # Philips Hue white PAR38 outdoor
12
+ '046677552343' : OnOffSwitchAdapter , # Philips Hue smart plug bluetooth
13
+ '1741830P7' : RGBWAdapter , # Philips Hue Lily outdoor spot light
14
+ '17436/30/P7' : DimmableBulbAdapter , # Philips Hue Welcome white flood light
15
+ '3115331PH' : RGBWAdapter , # Philips Phoenix light
16
+ '3216131P5' : DimmableCtBulbAdapter , # Philips Hue white ambiance Aurelle square panel light
17
+ '3216231P5' : DimmableCtBulbAdapter , # Philips Hue white ambiance Aurelle rectangle panel light
10
18
'3216331P5' : DimmableCtBulbAdapter , # Philips Hue white ambiance Aurelle Rectangle Panel Light
11
19
'3216431P5' : DimmableCtBulbAdapter , # Philips Hue white ambiance Aurelle round panel light
12
20
'324131092621' : HueDimmerSwitch , # Philips Hue dimmer switch
13
21
'3261030P7' : DimmableCtBulbAdapter , # Philips Hue Being
14
22
'3261331P7' : DimmableCtBulbAdapter , # Philips Hue white ambiance Still
23
+ '3306431P7' : DimmableCtBulbAdapter , # Philips Hue Struana
15
24
'4033930P7' : DimmableCtBulbAdapter , # Philips Hue white ambiance suspension Fair
16
25
'4090130P7' : RGBWAdapter , # Philips Hue Sana
17
26
'4090531P7' : RGBWAdapter , # Philips Hue Flourish white and color ambiance ceiling light
27
+ '4096730U7' : DimmableCtBulbAdapter , # Philips Hue Cher ceiling light
18
28
'433714' : DimmableBulbAdapter , # Philips Hue Lux A19 bulb E27
19
29
'464800' : DimmableCtBulbAdapter , # Philips Hue white ambiance BR30 flood light
30
+ '548727' : RGBWAdapter , # Philips Hue white and color ambiance BR30 with bluetooth
31
+ '7099860PH' : RGBAdapter , # Philips LivingColors Aura
20
32
'7146060PH' : RGBWAdapter , # Philips Hue Go
21
33
'7199960PH' : RGBAdapter , # Philips Hue Iris
22
34
'7299355PH' : RGBAdapter , # Philips Hue white and color ambiance LightStrip
23
35
'7299760PH' : RGBAdapter , # Philips Hue Bloom
36
+ '7602031P7' : RGBWAdapter , # Philips Hue Go with Bluetooth
37
+ '8718696170625' : DimmableBulbAdapter , # Philips Hue Fuzo outdoor wall light
24
38
'8718696449691' : DimmableBulbAdapter , # Philips Hue white Single bulb B22
25
39
'8718696485880' : RGBWAdapter , # Philips Hue white and color ambiance GU10
26
40
'8718696548738' : DimmableCtBulbAdapter , # Philips Hue white ambiance E26/E27
27
41
'8718696598283' : DimmableCtBulbAdapter , # Philips Hue white ambiance GU10
28
42
'8718696695203' : DimmableCtBulbAdapter , # Philips Hue white ambiance E14
43
+ '8718699673147' : DimmableBulbAdapter , # Philips Hue white A60 bulb E27 bluetooth
44
+ '8718699688820' : DimmableBulbAdapter , # Philips Hue Filament Standard A60/E27 bluetooth
29
45
'8718699688882' : DimmableBulbAdapter , # Philips Hue Fillament Bulb G93
30
46
'915005106701' : RGBWAdapter , # Philips Hue white and color ambiance LightStrip plus
47
+ '915005587401' : DimmableCtBulbAdapter , # Philips Hue white ambiance Adore light
31
48
'915005733701' : RGBWAdapter , # Philips Hue white and color ambiance Play Lightbar
32
49
'9290002579A' : RGBWAdapter , # Philips Hue white and color ambiance BR30
33
50
'9290011370' : DimmableBulbAdapter , # Philips Hue white A60 bulb E27
51
+ '9290011370B' : DimmableBulbAdapter , # Philips Hue white A60 bulb E27
52
+ '9290011998B' : DimmableCtBulbAdapter , # Philips Hue white ambiance E26
34
53
'9290012573A' : RGBWAdapter , # Philips Hue white and color ambiance E26/E27 (with Color Temperature)
35
54
'9290012607' : HueMotionSensor , # Philips Hue Motion Sensor (occupancy, temperature, illimination)
36
55
'9290018187B' : RGBWAdapter , # Philips Hue white and color ambiance LightStrip outdoor
37
56
'9290018195' : DimmableBulbAdapter , # Philips Hue white GU10
57
+ '929001953101' : RGBWAdapter , # Philips Hue white and color ambiance GU10
58
+ '929001953301' : DimmableCtBulbAdapter , # Philips Hue white ambiance GU10 with Bluetooth
38
59
'9290019758' : HueMotionSensor , # Philips Hue motion outdoor sensor
60
+ '9290020399' : DimmableBulbAdapter , # Philips Hue white E14
61
+ '9290022166' : RGBWAdapter , # Philips Hue white and color ambiance E26/E27
62
+ '9290022167' : DimmableCtBulbAdapter , # Philips Hue white ambiance E26 with Bluetooth
63
+ '9290022169' : DimmableCtBulbAdapter , # Philips Hue white ambiance E27 with Bluetooth
64
+ '929002240401' : OnOffSwitchAdapter , # Philips Hue smart plug - EU
65
+ '929002241201' : DimmableBulbAdapter , # Philips Hue white filament Edison E27 LED
39
66
'1741830P7' : RGBWAdapter , # Philips Hue lily outdoor spotlight
67
+ 'LWG004' : DimmableBulbAdapter , # Philips Hue white GU10 bluetooth
40
68
}
0 commit comments