Skip to content

Commit

Permalink
Add support for TRADFRI bulb E14 and TRADFRI bulb E27 (GladysAssistan…
Browse files Browse the repository at this point in the history
  • Loading branch information
hotfix31 authored Feb 20, 2020
1 parent 8edcefc commit c523c31
Show file tree
Hide file tree
Showing 2 changed files with 76 additions and 0 deletions.
2 changes: 2 additions & 0 deletions server/services/philips-hue/lib/light/light.getLights.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,8 @@ async function getLights() {
case 'LWB010': // hue white bulb with fixed warming light (2700K)
case 'LWB006': // Hue white lamp
case 'LWG004': // Hue white spot
case 'TRADFRI bulb E14 W op/ch 400lm': // IKEA white spot
case 'TRADFRI bulb E27 W opal 1000lm': // IKEA white lamp
lightsToReturn.push(getPhilipsHueWhiteLight(philipsHueLight, serialNumber, this.serviceId));
break;
case 'LTW012': // hue White Ambiance E12
Expand Down
74 changes: 74 additions & 0 deletions server/test/services/philips-hue/lights.json
Original file line number Diff line number Diff line change
Expand Up @@ -826,6 +826,80 @@
},
"_id": 19,
"id": 19
},
{
"state": {
"on": false,
"bri": 1,
"alert": "select",
"mode": "homeautomation",
"reachable": true
},
"swupdate": {
"state": "notupdatable",
"lastinstall": null
},
"type": "Dimmable light",
"name": "Couloir 1",
"modelid": "TRADFRI bulb E27 W opal 1000lm",
"manufacturername": "IKEA of Sweden",
"productname": "Dimmable light",
"_rawData": {
"capabilities": {
"certified": false,
"control": {},
"streaming": {
"renderer": false,
"proxy": false
}
},
"config": {
"archetype": "classicbulb",
"function": "functional",
"direction": "omnidirectional"
},
"uniqueid": "00:0b:57:ff:fe:b7:e9:fd-01",
"swversion": "1.2.214"
},
"_id": 20,
"id": 20
},
{
"state": {
"on": true,
"bri": 86,
"alert": "select",
"mode": "homeautomation",
"reachable": false
},
"swupdate": {
"state": "notupdatable",
"lastinstall": "2019-07-13T18:43:10"
},
"type": "Dimmable light",
"name": "E14 1 sdb",
"modelid": "TRADFRI bulb E14 W op/ch 400lm",
"manufacturername": "IKEA of Sweden",
"productname": "Dimmable light",
"_rawData": {
"capabilities": {
"certified": false,
"control": {},
"streaming": {
"renderer": false,
"proxy": false
}
},
"config": {
"archetype": "candlebulb",
"function": "functional",
"direction": "omnidirectional"
},
"uniqueid": "00:0d:6f:ff:fe:a9:33:90-01",
"swversion": "1.2.214"
},
"_id": 21,
"id": 21
}
]
}

0 comments on commit c523c31

Please sign in to comment.