Hue Lights discussion

Posted on
Wed Nov 20, 2019 1:42 am
nsheldon offline
Posts: 2469
Joined: Aug 09, 2010
Location: CA

Re: Hue Lights discussion

Version 1.7.18 Posted

  • Added support for an IKEA dimmable 1000 lumen E27 color temperature bulb.
  • Added support for an IKEA dimmable 600 lumen E14 color temperature bulb.
  • Added support for an IKEA dimmable 600 lumen E27 color LED bulb.

Posted on
Wed Nov 20, 2019 12:34 pm
haavarda offline
User avatar
Posts: 702
Joined: Aug 18, 2012
Location: Norway

Re: Hue Lights discussion

Thanks Nathan.
Works perfectly.


Sent from my iPhone using Tapatalk

Håvard

Posted on
Wed Nov 20, 2019 3:46 pm
MarcoGT offline
Posts: 1091
Joined: Sep 11, 2014
Location: Germany

Re: Hue Lights discussion

Thanks Nathan, it works like a charm

Posted on
Sat Nov 23, 2019 6:35 am
forestfield offline
Posts: 83
Joined: Dec 29, 2014
Location: West Sussex

Re: Hue Lights discussion

Hi Nathan,
Thanks to the Amazon Black Friday I now have some new gu10 lights (and an empty wallet!)

They're not supported in the plugin yet, the model number is LCG002; The hue lights debug snippet for this is

Code: Select all
 u'45': {u'swversion': u'1.55.7_r28193', u'name': u'DR 1', u'swupdate': {u'state': u'noupdates', u'lastinstall': u'2019-11-23T11:19:12'}, u'productid': u'Philips-LCG002-1-GU10ECLv2', u'uniqueid': u'00:17:88:01:08:4f:8d:51-0b', u'capabilities': {u'control': {u'ct': {u'max': 500, u'min': 153}, u'colorgamut': [[0.6915, 0.3083], [0.17, 0.7], [0.1532, 0.0475]], u'mindimlevel': 200, u'maxlumen': 300, u'colorgamuttype': u'C'}, u'streaming': {u'renderer': True, u'proxy': True}, u'certified': True}, u'productname': u'Hue color spot', u'state': {u'on': True, u'hue': 28349, u'colormode': u'xy', u'effect': u'none', u'alert': u'select', u'xy': [0.1712, 0.6128], u'reachable': True, u'mode': u'homeautomation', u'bri': 199, u'ct': 153, u'sat': 250}, u'manufacturername': u'Philips', u'swconfigid': u'9AB97D21', u'config': {u'function': u'mixed', u'startup': {u'configured': True, u'mode': u'powerfail'}, u'direction': u'downwards', u'archetype': u'singlespot'}, u'type': u'Extended color light', u'modelid': u'LCG002'},


It's 'DR 1'. I haven't uploaded the full hue light debug - it's 35k'ish, let me know if you need it!

I've tweaked my supportedDevices.py, adding LCG002 to kHueBulbDeviceIDs and can now see them.

On a more general note, the colour gamut is a lot better than the previous gu10 lights, and they're also shorter so fit in a gu10 housing neatly, rather than sticking out 2-3 cm's.

Regards
-- Paul --

Posted on
Sun Nov 24, 2019 11:23 am
nsheldon offline
Posts: 2469
Joined: Aug 09, 2010
Location: CA

Re: Hue Lights discussion

Hi Paul.

Thanks for the report and debug info. I’ll get that light into the next release.

Posted on
Sat Nov 30, 2019 12:21 pm
forestfield offline
Posts: 83
Joined: Dec 29, 2014
Location: West Sussex

Re: Hue Lights discussion

Thanks Nathan,

I've got another one for you (more Black Friday spending). It's a Hue Smart Button, another type of switch, see https://www2.meethue.com/en-us/p/hue-smart-button/046677553715. Not sure how this fits in with the existing switch infrastructure; it's just a single button. If there's any more info I can provide, let me know.


Snippet from plugin.log is
Code: Select all
u'25': {u'name': u'Hue Smart button 1', u'uniqueid': u'00:17:88:01:06:06:97:8b-01-fc00', u'swupdate': {u'state': u'noupdates', u'lastinstall': u'2019-11-30T13:35:41'}, u'swversion': u'2.21.0_r29784', u'capabilities': {u'inputs': [{u'repeatintervals': [800], u'events': [{u'eventtype': u'initial_press', u'buttonevent': 1000}, {u'eventtype': u'repeat', u'buttonevent': 1001}, {u'eventtype': u'short_release', u'buttonevent': 1002}, {u'eventtype': u'long_release', u'buttonevent': 1003}]}], u'primary': True, u'certified': True}, u'productname': u'Hue Smart button', u'state': {u'lastupdated': u'2019-11-30T13:46:59', u'buttonevent': 1002}, u'diversityid': u'8b18a40c-eb6a-40d7-a0af-eb0906613d41', u'manufacturername': u'Philips', u'type': u'ZLLSwitch', u'config': {u'battery': 100, u'on': True, u'reachable': True, u'pending': []}, u'modelid': u'ROM001'}


I've added it to my supportedDevices.py as a dimmer switch, and it's seen by the hue plugin and presses are recognised; but looking at plugin.log the plugin looks like it's getting stuck in some initialisation loop, so removed for the moment.

Again, more generally, it looks like the battery isn't replaceable in this :-(
-- Paul --

Posted on
Sat Nov 30, 2019 12:55 pm
nsheldon offline
Posts: 2469
Joined: Aug 09, 2010
Location: CA

Re: Hue Lights discussion

Hi Paul.

Thanks for the info and log. I’ll check it out. As you’ve noticed, though, adding new button/switch support is a bit more complicated than just putting the modelID in the correct list. Without a sample piece of hardware to use for testing, I may not be able to add support for that button (reliably anyway). We’ll see.

Posted on
Sat Nov 30, 2019 1:26 pm
forestfield offline
Posts: 83
Joined: Dec 29, 2014
Location: West Sussex

Re: Hue Lights discussion

No probs, I use my hue switches independently of Indigo, so it was more of a FYI.

I might have been wrong about the 'stuck in a loop' thing though - I stopped seeing anything in the indigolog.txt, just realised that it had got too big. I'll have another look tomorrow.

Cheers
-- Paul --

Posted on
Sun Dec 01, 2019 2:05 am
MarcoGT offline
Posts: 1091
Joined: Sep 11, 2014
Location: Germany

Re: Hue Lights discussion

Hi,

bought yesterday a new IKEA bulb, chosen name its "Cameretta"
Already added to Hue hub

Hue Lights Debug Loaded lights list - {u'11': {u'swversion': u'1.3.002', u'name': u'Cameretta', u'swupdate': {u'state': u'notupdatable', u'lastinstall': u'2019-12-01T07:39:53'}, u'uniqueid': u'cc:cc:cc:ff:fe:9e:8b:26-01', u'capabilities': {u'control': {u'colorgamuttype': u'other'}, u'streaming': {u'renderer': False, u'proxy': False}, u'certified': False}, u'productname': u'Color light', u'state': {u'on': False, u'hue': 0, u'colormode': u'ct', u'effect': u'none', u'alert': u'select', u'xy': [0.458, 0.41], u'reachable': True, u'mode': u'homeautomation', u'bri': 254, u'sat': 0}, u'manufacturername': u'IKEA of Sweden', u'config': {u'function': u'decorative', u'direction': u'omnidirectional', u'archetype': u'classicbulb'}, u'type': u'Color light', u'modelid': u'TRADFRI bulb E14 CWS opal 600lm'}, u'10': {u'swversion': u'1.2.214', u'name': u'Divano5', u'swupdate': {u'state': u'notupdatable', u'lastinstall': u'2019-11-23T15:30:47'}, u'uniqueid': u'08:6b:d7:ff:fe:04:ec:30-01', u'capabilities': {u'control': {}, u'streaming': {u'renderer': False, u'proxy': False}, u'certified': False}, u'productname': u'Dimmable light', u'state': {u'on': True, u'reachable': True, u'mode': u'homeautomation', u'bri': 254, u'alert': u'none'}, u'manufacturername': u'IKEA of Sweden', u'config': {u'function': u'functional', u'direction': u'omnidirectional', u'archetype': u'classicbulb'}, u'type': u'Dimmable light', u'modelid': u'TRADFRI bulb E14 W op/ch 400lm'}, u'1': {u'swversion': u'1.46.13_r26312', u'name': u'Luna', u'swupdate': {u'state': u'noupdates', u'lastinstall': u'2018-12-06T15:19:08'}, u'productid': u'Philips-LCT012-1-E14ECLv1', u'uniqueid': u'00:17:88:01:03:40:59:ad-0b', u'capabilities': {u'control': {u'ct': {u'max': 500, u'min': 153}, u'colorgamut': [[0.6915, 0.3083], [0.17, 0.7], [0.1532, 0.0475]], u'mindimlevel': 2000, u'maxlumen': 450, u'colorgamuttype': u'C'}, u'streaming': {u'renderer': True, u'proxy': True}, u'certified': True}, u'productname': u'Hue color candle', u'state': {u'on': False, u'hue': 8682, u'colormode': u'hs', u'effect': u'none', u'alert': u'select', u'xy': [0.5099, 0.4388], u'reachable': True, u'mode': u'homeautomation', u'bri': 254, u'ct': 463, u'sat': 245}, u'manufacturername': u'Philips', u'swconfigid': u'8C67986F', u'config': {u'function': u'mixed', u'startup': {u'configured': True, u'mode': u'safety'}, u'direction': u'omnidirectional', u'archetype': u'candlebulb'}, u'type': u'Extended color light', u'modelid': u'LCT012'}, u'3': {u'swversion': u'1.46.13_r26312', u'name': u'TV-1', u'swupdate': {u'state': u'noupdates', u'lastinstall': u'2018-12-06T15:19:15'}, u'productid': u'3241-3127-7871-LS00', u'uniqueid': u'00:17:88:01:04:53:55:b3-0b', u'capabilities': {u'control': {u'ct': {u'max': 500, u'min': 153}, u'colorgamut': [[0.6915, 0.3083], [0.17, 0.7], [0.1532, 0.0475]], u'mindimlevel': 500, u'maxlumen': 540, u'colorgamuttype': u'C'}, u'streaming': {u'renderer': True, u'proxy': True}, u'certified': True}, u'productname': u'Hue play', u'state': {u'on': False, u'hue': 8258, u'colormode': u'xy', u'effect': u'none', u'alert': u'select', u'xy': [0.5233, 0.4346], u'reachable': True, u'mode': u'homeautomation', u'bri': 1, u'ct': 488, u'sat': 254}, u'manufacturername': u'Philips', u'swconfigid': u'869E2FE2', u'config': {u'function': u'decorative', u'startup': {u'configured': True, u'mode': u'powerfail'}, u'direction': u'upwards', u'archetype': u'hueplay'}, u'type': u'Extended color light', u'modelid': u'LCT024'}, u'2': {u'swversion': u'1.46.13_r26312', u'name': u'Palloncino', u'swupdate': {u'state': u'noupdates', u'lastinstall': u'2018-12-06T15:19:03'}, u'productid': u'Philips-LCT012-1-E14ECLv1', u'uniqueid': u'00:17:88:01:03:40:59:a7-0b', u'capabilities': {u'control': {u'ct': {u'max': 500, u'min': 153}, u'colorgamut': [[0.6915, 0.3083], [0.17, 0.7], [0.1532, 0.0475]], u'mindimlevel': 2000, u'maxlumen': 450, u'colorgamuttype': u'C'}, u'streaming': {u'renderer': True, u'proxy': True}, u'certified': True}, u'productname': u'Hue color candle', u'state': {u'on': False, u'hue': 8418, u'colormode': u'ct', u'effect': u'none', u'alert': u'select', u'xy': [0.4573, 0.41], u'reachable': True, u'mode': u'homeautomation', u'bri': 254, u'ct': 366, u'sat': 140}, u'manufacturername': u'Philips', u'swconfigid': u'8C67986F', u'config': {u'function': u'mixed', u'startup': {u'configured': True, u'mode': u'powerfail'}, u'direction': u'omnidirectional', u'archetype': u'candlebulb'}, u'type': u'Extended color light', u'modelid': u'LCT012'}, u'5': {u'swversion': u'V1.04.12', u'name': u'Microonde', u'swupdate': {u'state': u'notupdatable', u'lastinstall': u'2019-11-15T14:08:34'}, u'uniqueid': u'7c:b0:3e:aa:0a:03:18:b7-03', u'capabilities': {u'control': {}, u'streaming': {u'renderer': False, u'proxy': False}, u'certified': False}, u'productname': u'On/Off plug', u'state': {u'on': False, u'reachable': True, u'mode': u'homeautomation', u'alert': u'select'}, u'manufacturername': u'OSRAM', u'config': {u'function': u'functional', u'direction': u'omnidirectional', u'archetype': u'classicbulb'}, u'type': u'On/Off plug-in unit', u'modelid': u'Plug 01'}, u'4': {u'swversion': u'1.46.13_r26312', u'name': u'TV-2', u'swupdate': {u'state': u'noupdates', u'lastinstall': u'2018-12-06T15:19:12'}, u'productid': u'3241-3127-7871-LS00', u'uniqueid': u'00:17:88:01:04:53:51:c2-0b', u'capabilities': {u'control': {u'ct': {u'max': 500, u'min': 153}, u'colorgamut': [[0.6915, 0.3083], [0.17, 0.7], [0.1532, 0.0475]], u'mindimlevel': 500, u'maxlumen': 540, u'colorgamuttype': u'C'}, u'streaming': {u'renderer': True, u'proxy': True}, u'certified': True}, u'productname': u'Hue play', u'state': {u'on': False, u'hue': 8136, u'colormode': u'xy', u'effect': u'none', u'alert': u'select', u'xy': [0.5257, 0.4328], u'reachable': True, u'mode': u'homeautomation', u'bri': 1, u'ct': 497, u'sat': 254}, u'manufacturername': u'Philips', u'swconfigid': u'869E2FE2', u'config': {u'function': u'decorative', u'startup': {u'configured': True, u'mode': u'powerfail'}, u'direction': u'upwards', u'archetype': u'hueplay'}, u'type': u'Extended color light', u'modelid': u'LCT024'}, u'7': {u'swversion': u'1.2.214', u'name': u'Divano2', u'swupdate': {u'state': u'notupdatable', u'lastinstall': u'2019-11-23T15:22:40'}, u'uniqueid': u'08:6b:d7:ff:fe:04:f7:54-01', u'capabilities': {u'control': {}, u'streaming': {u'renderer': False, u'proxy': False}, u'certified': False}, u'productname': u'Dimmable light', u'state': {u'on': True, u'reachable': True, u'mode': u'homeautomation', u'bri': 254, u'alert': u'select'}, u'manufacturername': u'IKEA of Sweden', u'config': {u'function': u'functional', u'direction': u'omnidirectional', u'archetype': u'classicbulb'}, u'type': u'Dimmable light', u'modelid': u'TRADFRI bulb E14 W op/ch 400lm'}, u'6': {u'swversion': u'1.2.214', u'name': u'Divano1', u'swupdate': {u'state': u'notupdatable', u'lastinstall': u'2019-11-23T15:00:02'}, u'uniqueid': u'08:6b:d7:ff:fe:1c:cc:33-01', u'capabilities': {u'control': {}, u'streaming': {u'renderer': False, u'proxy': False}, u'certified': False}, u'productname': u'Dimmable light', u'state': {u'on': True, u'reachable': True, u'mode': u'homeautomation', u'bri': 254, u'alert': u'select'}, u'manufacturername': u'IKEA of Sweden', u'config': {u'function': u'functional', u'direction': u'omnidirectional', u'archetype': u'classicbulb'}, u'type': u'Dimmable light', u'modelid': u'TRADFRI bulb E14 W op/ch 400lm'}, u'9': {u'swversion': u'1.2.214', u'name': u'Divano4', u'swupdate': {u'state': u'notupdatable', u'lastinstall': u'2019-11-23T15:30:05'}, u'uniqueid': u'd0:cf:5e:ff:fe:d9:d5:39-01', u'capabilities': {u'control': {}, u'streaming': {u'renderer': False, u'proxy': False}, u'certified': False}, u'productname': u'Dimmable light', u'state': {u'on': True, u'reachable': True, u'mode': u'homeautomation', u'bri': 254, u'alert': u'select'}, u'manufacturername': u'IKEA of Sweden', u'config': {u'function': u'functional', u'direction': u'omnidirectional', u'archetype': u'classicbulb'}, u'type': u'Dimmable light', u'modelid': u'TRADFRI bulb E14 W op/ch 400lm'}, u'8': {u'swversion': u'1.2.214', u'name': u'Divano3', u'swupdate': {u'state': u'notupdatable', u'lastinstall': u'2019-11-23T15:29:11'}, u'uniqueid': u'08:6b:d7:ff:fe:5a:93:c6-01', u'capabilities': {u'control': {}, u'streaming': {u'renderer': False, u'proxy': False}, u'certified': False}, u'productname': u'Dimmable light', u'state': {u'on': True, u'reachable': True, u'mode': u'homeautomation', u'bri': 254, u'alert': u'select'}, u'manufacturername': u'IKEA of Sweden', u'config': {u'function': u'functional', u'direction': u'omnidirectional', u'archetype': u'classicbulb'}, u'type': u'Dimmable light', u'modelid': u'TRADFRI bulb E14 W op/ch 400lm'}}
Hue Lights Debug Starting parseAllHueLightsData.
Hue Lights Debug parseAllHueLightsData: There are 11 lights on the Hue bridge and 10 Indigo devices controlling Hue devices.
Hue Lights Debug Starting updateGroupsList.
Hue Lights Debug Sending command to bridge: http://192.168.2.226/api/bMq1i5znvMMZKv ... k6J/groups
Hue Lights Debug Got response {u'1': {u'name': u'Bagno', u'lights': [], u'state': {u'any_on': False, u'all_on': False}, u'action': {u'on': False, u'alert': u'none'}, u'recycle': False, u'sensors': [], u'type': u'Room', u'class': u'Other'}, u'3': {u'name': u'Camera', u'lights': [], u'state': {u'any_on': False, u'all_on': False}, u'action': {u'on': False, u'alert': u'none'}, u'recycle': False, u'sensors': [], u'type': u'Room', u'class': u'Other'}, u'2': {u'name': u'Cucina', u'lights': [u'5'], u'state': {u'any_on': False, u'all_on': False}, u'action': {u'on': False, u'alert': u'select'}, u'recycle': False, u'sensors': [], u'type': u'Room', u'class': u'Other'}, u'5': {u'name': u'Terrazza', u'lights': [], u'state': {u'any_on': False, u'all_on': False}, u'action': {u'on': False, u'alert': u'none'}, u'recycle': False, u'sensors': [], u'type': u'Room', u'class': u'Other'}, u'4': {u'name': u'Cameretta', u'lights': [u'11', u'1', u'2'], u'state': {u'any_on': False, u'all_on': False}, u'action': {u'on': False, u'hue': 8418, u'colormode': u'ct', u'effect': u'none', u'alert': u'select', u'xy': [0.4573, 0.41], u'bri': 254, u'ct': 366, u'sat': 140}, u'recycle': False, u'sensors': [], u'type': u'Room', u'class': u'Nursery'}, u'7': {u'name': u'Standard', u'lights': [], u'state': {u'any_on': False, u'all_on': False}, u'action': {u'on': False, u'alert': u'none'}, u'recycle': False, u'sensors': [], u'type': u'Room', u'class': u'Other'}, u'6': {u'name': u'Sala', u'lights': [u'8', u'9', u'10', u'7', u'6', u'3', u'4'], u'state': {u'any_on': True, u'all_on': False}, u'action': {u'on': False, u'hue': 8136, u'colormode': u'xy', u'effect': u'none', u'alert': u'select', u'xy': [0.5257, 0.4328], u'bri': 1, u'ct': 497, u'sat': 254}, u'recycle': False, u'sensors': [], u'type': u'Room', u'class': u'Living room'}, u'9': {u'name': u'Area - TV', u'stream': {u'proxymode': u'auto', u'active': False, u'proxynode': u'/lights/4', u'owner': None}, u'locations': {u'3': [-0.55, 1.0, 0.0], u'4': [0.45, 0.99, 0.0]}, u'lights': [u'4', u'3'], u'state': {u'any_on': False, u'all_on': False}, u'action': {u'on': False, u'hue': 8258, u'colormode': u'xy', u'effect': u'none', u'alert': u'select', u'xy': [0.5233, 0.4346], u'bri': 1, u'ct': 488, u'sat': 254}, u'recycle': False, u'sensors': [], u'type': u'Entertainment', u'class': u'TV'}, u'8': {u'name': u'Corridoio', u'lights': [], u'state': {u'any_on': False, u'all_on': False}, u'action': {u'on': False, u'alert': u'none'}, u'recycle': False, u'sensors': [], u'type': u'Room', u'class': u'Other'}}
Hue Lights Debug Loaded groups list - {u'1': {u'name': u'Bagno', u'lights': [], u'state': {u'any_on': False, u'all_on': False}, u'action': {u'on': False, u'alert': u'none'}, u'recycle': False, u'sensors': [], u'type': u'Room', u'class': u'Other'}, u'3': {u'name': u'Camera', u'lights': [], u'state': {u'any_on': False, u'all_on': False}, u'action': {u'on': False, u'alert': u'none'}, u'recycle': False, u'sensors': [], u'type': u'Room', u'class': u'Other'}, u'2': {u'name': u'Cucina', u'lights': [u'5'], u'state': {u'any_on': False, u'all_on': False}, u'action': {u'on': False, u'alert': u'select'}, u'recycle': False, u'sensors': [], u'type': u'Room', u'class': u'Other'}, u'5': {u'name': u'Terrazza', u'lights': [], u'state': {u'any_on': False, u'all_on': False}, u'action': {u'on': False, u'alert': u'none'}, u'recycle': False, u'sensors': [], u'type': u'Room', u'class': u'Other'}, u'4': {u'name': u'Cameretta', u'lights': [u'11', u'1', u'2'], u'state': {u'any_on': False, u'all_on': False}, u'action': {u'on': False, u'hue': 8418, u'colormode': u'ct', u'effect': u'none', u'alert': u'select', u'xy': [0.4573, 0.41], u'bri': 254, u'ct': 366, u'sat': 140}, u'recycle': False, u'sensors': [], u'type': u'Room', u'class': u'Nursery'}, u'7': {u'name': u'Standard', u'lights': [], u'state': {u'any_on': False, u'all_on': False}, u'action': {u'on': False, u'alert': u'none'}, u'recycle': False, u'sensors': [], u'type': u'Room', u'class': u'Other'}, u'6': {u'name': u'Sala', u'lights': [u'8', u'9', u'10', u'7', u'6', u'3', u'4'], u'state': {u'any_on': True, u'all_on': False}, u'action': {u'on': False, u'hue': 8136, u'colormode': u'xy', u'effect': u'none', u'alert': u'select', u'xy': [0.5257, 0.4328], u'bri': 1, u'ct': 497, u'sat': 254}, u'recycle': False, u'sensors': [], u'type': u'Room', u'class': u'Living room'}, u'9': {u'name': u'Area - TV', u'stream': {u'proxymode': u'auto', u'active': False, u'proxynode': u'/lights/4', u'owner': None}, u'locations': {u'3': [-0.55, 1.0, 0.0], u'4': [0.45, 0.99, 0.0]}, u'lights': [u'4', u'3'], u'state': {u'any_on': False, u'all_on': False}, u'action': {u'on': False, u'hue': 8258, u'colormode': u'xy', u'effect': u'none', u'alert': u'select', u'xy': [0.5233, 0.4346], u'bri': 1, u'ct': 488, u'sat': 254}, u'recycle': False, u'sensors': [], u'type': u'Entertainment', u'class': u'TV'}, u'8': {u'name': u'Corridoio', u'lights': [], u'state': {u'any_on': False, u'all_on': False}, u'action': {u'on': False, u'alert': u'none'}, u'recycle': False, u'sensors': [], u'type': u'Room', u'class': u'Other'}}
Hue Lights Debug Starting parseAllHueGroupsData.
Hue Lights Debug Starting updateSensorsList.
Hue Lights Debug Starting parseAllHueSensorsData.
Hue Lights Debug Starting updateSensorsList.
Hue Lights Debug Starting parseAllHueSensorsData.
Hue Lights Debug Starting updateSensorsList.
Hue Lights Debug Starting parseAllHueSensorsData.
Hue Lights Debug Starting updateSensorsList.
Hue Lights Debug Starting parseAllHueSensorsData.
Hue Lights Debug Starting updateSensorsList.
Hue Lights Debug Starting parseAllHueSensorsData.
Hue Lights Debug Starting updateLightsList.
Hue Lights Debug Sending command to bridge: http://192.168.2.226/api/bMq1i5znvMMZKv ... k6J/lights
Hue Lights Debug Got response {u'11': {u'swversion': u'1.3.002', u'name': u'Cameretta', u'swupdate': {u'state': u'notupdatable', u'lastinstall': u'2019-12-01T07:39:53'}, u'uniqueid': u'cc:cc:cc:ff:fe:9e:8b:26-01', u'capabilities': {u'control': {u'colorgamuttype': u'other'}, u'streaming': {u'renderer': False, u'proxy': False}, u'certified': False}, u'productname': u'Color light', u'state': {u'on': False, u'hue': 0, u'colormode': u'ct', u'effect': u'none', u'alert': u'select', u'xy': [0.458, 0.41], u'reachable': True, u'mode': u'homeautomation', u'bri': 254, u'sat': 0}, u'manufacturername': u'IKEA of Sweden', u'config': {u'function': u'decorative', u'direction': u'omnidirectional', u'archetype': u'classicbulb'}, u'type': u'Color light', u'modelid': u'TRADFRI bulb E14 CWS opal 600lm'}, u'10': {u'swversion': u'1.2.214', u'name': u'Divano5', u'swupdate': {u'state': u'notupdatable', u'lastinstall': u'2019-11-23T15:30:47'}, u'uniqueid': u'08:6b:d7:ff:fe:04:ec:30-01', u'capabilities': {u'control': {}, u'streaming': {u'renderer': False, u'proxy': False}, u'certified': False}, u'productname': u'Dimmable light', u'state': {u'on': True, u'reachable': True, u'mode': u'homeautomation', u'bri': 254, u'alert': u'none'}, u'manufacturername': u'IKEA of Sweden', u'config': {u'function': u'functional', u'direction': u'omnidirectional', u'archetype': u'classicbulb'}, u'type': u'Dimmable light', u'modelid': u'TRADFRI bulb E14 W op/ch 400lm'}, u'1': {u'swversion': u'1.46.13_r26312', u'name': u'Luna', u'swupdate': {u'state': u'noupdates', u'lastinstall': u'2018-12-06T15:19:08'}, u'productid': u'Philips-LCT012-1-E14ECLv1', u'uniqueid': u'00:17:88:01:03:40:59:ad-0b', u'capabilities': {u'control': {u'ct': {u'max': 500, u'min': 153}, u'colorgamut': [[0.6915, 0.3083], [0.17, 0.7], [0.1532, 0.0475]], u'mindimlevel': 2000, u'maxlumen': 450, u'colorgamuttype': u'C'}, u'streaming': {u'renderer': True, u'proxy': True}, u'certified': True}, u'productname': u'Hue color candle', u'state': {u'on': False, u'hue': 8682, u'colormode': u'hs', u'effect': u'none', u'alert': u'select', u'xy': [0.5099, 0.4388], u'reachable': True, u'mode': u'homeautomation', u'bri': 254, u'ct': 463, u'sat': 245}, u'manufacturername': u'Philips', u'swconfigid': u'8C67986F', u'config': {u'function': u'mixed', u'startup': {u'configured': True, u'mode': u'safety'}, u'direction': u'omnidirectional', u'archetype': u'candlebulb'}, u'type': u'Extended color light', u'modelid': u'LCT012'}, u'3': {u'swversion': u'1.46.13_r26312', u'name': u'TV-1', u'swupdate': {u'state': u'noupdates', u'lastinstall': u'2018-12-06T15:19:15'}, u'productid': u'3241-3127-7871-LS00', u'uniqueid': u'00:17:88:01:04:53:55:b3-0b', u'capabilities': {u'control': {u'ct': {u'max': 500, u'min': 153}, u'colorgamut': [[0.6915, 0.3083], [0.17, 0.7], [0.1532, 0.0475]], u'mindimlevel': 500, u'maxlumen': 540, u'colorgamuttype': u'C'}, u'streaming': {u'renderer': True, u'proxy': True}, u'certified': True}, u'productname': u'Hue play', u'state': {u'on': False, u'hue': 8258, u'colormode': u'xy', u'effect': u'none', u'alert': u'select', u'xy': [0.5233, 0.4346], u'reachable': True, u'mode': u'homeautomation', u'bri': 1, u'ct': 488, u'sat': 254}, u'manufacturername': u'Philips', u'swconfigid': u'869E2FE2', u'config': {u'function': u'decorative', u'startup': {u'configured': True, u'mode': u'powerfail'}, u'direction': u'upwards', u'archetype': u'hueplay'}, u'type': u'Extended color light', u'modelid': u'LCT024'}, u'2': {u'swversion': u'1.46.13_r26312', u'name': u'Palloncino', u'swupdate': {u'state': u'noupdates', u'lastinstall': u'2018-12-06T15:19:03'}, u'productid': u'Philips-LCT012-1-E14ECLv1', u'uniqueid': u'00:17:88:01:03:40:59:a7-0b', u'capabilities': {u'control': {u'ct': {u'max': 500, u'min': 153}, u'colorgamut': [[0.6915, 0.3083], [0.17, 0.7], [0.1532, 0.0475]], u'mindimlevel': 2000, u'maxlumen': 450, u'colorgamuttype': u'C'}, u'streaming': {u'renderer': True, u'proxy': True}, u'certified': True}, u'productname': u'Hue color candle', u'state': {u'on': False, u'hue': 8418, u'colormode': u'ct', u'effect': u'none', u'alert': u'select', u'xy': [0.4573, 0.41], u'reachable': True, u'mode': u'homeautomation', u'bri': 254, u'ct': 366, u'sat': 140}, u'manufacturername': u'Philips', u'swconfigid': u'8C67986F', u'config': {u'function': u'mixed', u'startup': {u'configured': True, u'mode': u'powerfail'}, u'direction': u'omnidirectional', u'archetype': u'candlebulb'}, u'type': u'Extended color light', u'modelid': u'LCT012'}, u'5': {u'swversion': u'V1.04.12', u'name': u'Microonde', u'swupdate': {u'state': u'notupdatable', u'lastinstall': u'2019-11-15T14:08:34'}, u'uniqueid': u'7c:b0:3e:aa:0a:03:18:b7-03', u'capabilities': {u'control': {}, u'streaming': {u'renderer': False, u'proxy': False}, u'certified': False}, u'productname': u'On/Off plug', u'state': {u'on': False, u'reachable': True, u'mode': u'homeautomation', u'alert': u'select'}, u'manufacturername': u'OSRAM', u'config': {u'function': u'functional', u'direction': u'omnidirectional', u'archetype': u'classicbulb'}, u'type': u'On/Off plug-in unit', u'modelid': u'Plug 01'}, u'4': {u'swversion': u'1.46.13_r26312', u'name': u'TV-2', u'swupdate': {u'state': u'noupdates', u'lastinstall': u'2018-12-06T15:19:12'}, u'productid': u'3241-3127-7871-LS00', u'uniqueid': u'00:17:88:01:04:53:51:c2-0b', u'capabilities': {u'control': {u'ct': {u'max': 500, u'min': 153}, u'colorgamut': [[0.6915, 0.3083], [0.17, 0.7], [0.1532, 0.0475]], u'mindimlevel': 500, u'maxlumen': 540, u'colorgamuttype': u'C'}, u'streaming': {u'renderer': True, u'proxy': True}, u'certified': True}, u'productname': u'Hue play', u'state': {u'on': False, u'hue': 8136, u'colormode': u'xy', u'effect': u'none', u'alert': u'select', u'xy': [0.5257, 0.4328], u'reachable': True, u'mode': u'homeautomation', u'bri': 1, u'ct': 497, u'sat': 254}, u'manufacturername': u'Philips', u'swconfigid': u'869E2FE2', u'config': {u'function': u'decorative', u'startup': {u'configured': True, u'mode': u'powerfail'}, u'direction': u'upwards', u'archetype': u'hueplay'}, u'type': u'Extended color light', u'modelid': u'LCT024'}, u'7': {u'swversion': u'1.2.214', u'name': u'Divano2', u'swupdate': {u'state': u'notupdatable', u'lastinstall': u'2019-11-23T15:22:40'}, u'uniqueid': u'08:6b:d7:ff:fe:04:f7:54-01', u'capabilities': {u'control': {}, u'streaming': {u'renderer': False, u'proxy': False}, u'certified': False}, u'productname': u'Dimmable light', u'state': {u'on': True, u'reachable': True, u'mode': u'homeautomation', u'bri': 254, u'alert': u'select'}, u'manufacturername': u'IKEA of Sweden', u'config': {u'function': u'functional', u'direction': u'omnidirectional', u'archetype': u'classicbulb'}, u'type': u'Dimmable light', u'modelid': u'TRADFRI bulb E14 W op/ch 400lm'}, u'6': {u'swversion': u'1.2.214', u'name': u'Divano1', u'swupdate': {u'state': u'notupdatable', u'lastinstall': u'2019-11-23T15:00:02'}, u'uniqueid': u'08:6b:d7:ff:fe:1c:cc:33-01', u'capabilities': {u'control': {}, u'streaming': {u'renderer': False, u'proxy': False}, u'certified': False}, u'productname': u'Dimmable light', u'state': {u'on': True, u'reachable': True, u'mode': u'homeautomation', u'bri': 254, u'alert': u'select'}, u'manufacturername': u'IKEA of Sweden', u'config': {u'function': u'functional', u'direction': u'omnidirectional', u'archetype': u'classicbulb'}, u'type': u'Dimmable light', u'modelid': u'TRADFRI bulb E14 W op/ch 400lm'}, u'9': {u'swversion': u'1.2.214', u'name': u'Divano4', u'swupdate': {u'state': u'notupdatable', u'lastinstall': u'2019-11-23T15:30:05'}, u'uniqueid': u'd0:cf:5e:ff:fe:d9:d5:39-01', u'capabilities': {u'control': {}, u'streaming': {u'renderer': False, u'proxy': False}, u'certified': False}, u'productname': u'Dimmable light', u'state': {u'on': True, u'reachable': True, u'mode': u'homeautomation', u'bri': 254, u'alert': u'select'}, u'manufacturername': u'IKEA of Sweden', u'config': {u'function': u'functional', u'direction': u'omnidirectional', u'archetype': u'classicbulb'}, u'type': u'Dimmable light', u'modelid': u'TRADFRI bulb E14 W op/ch 400lm'}, u'8': {u'swversion': u'1.2.214', u'name': u'Divano3', u'swupdate': {u'state': u'notupdatable', u'lastinstall': u'2019-11-23T15:29:11'}, u'uniqueid': u'08:6b:d7:ff:fe:5a:93:c6-01', u'capabilities': {u'control': {}, u'streaming': {u'renderer': False, u'proxy': False}, u'certified': False}, u'productname': u'Dimmable light', u'state': {u'on': True, u'reachable': True, u'mode': u'homeautomation', u'bri': 254, u'alert': u'select'}, u'manufacturername': u'IKEA of Sweden', u'config': {u'function': u'functional', u'direction': u'omnidirectional', u'archetype': u'classicbulb'}, u'type': u'Dimmable light', u'modelid': u'TRADFRI bulb E14 W op/ch 400lm'}}
Hue Lights Debug Loaded lights list - {u'11': {u'swversion': u'1.3.002', u'name': u'Cameretta', u'swupdate': {u'state': u'notupdatable', u'lastinstall': u'2019-12-01T07:39:53'}, u'uniqueid': u'cc:cc:cc:ff:fe:9e:8b:26-01', u'capabilities': {u'control': {u'colorgamuttype': u'other'}, u'streaming': {u'renderer': False, u'proxy': False}, u'certified': False}, u'productname': u'Color light', u'state': {u'on': False, u'hue': 0, u'colormode': u'ct', u'effect': u'none', u'alert': u'select', u'xy': [0.458, 0.41], u'reachable': True, u'mode': u'homeautomation', u'bri': 254, u'sat': 0}, u'manufacturername': u'IKEA of Sweden', u'config': {u'function': u'decorative', u'direction': u'omnidirectional', u'archetype': u'classicbulb'}, u'type': u'Color light', u'modelid': u'TRADFRI bulb E14 CWS opal 600lm'}, u'10': {u'swversion': u'1.2.214', u'name': u'Divano5', u'swupdate': {u'state': u'notupdatable', u'lastinstall': u'2019-11-23T15:30:47'}, u'uniqueid': u'08:6b:d7:ff:fe:04:ec:30-01', u'capabilities': {u'control': {}, u'streaming': {u'renderer': False, u'proxy': False}, u'certified': False}, u'productname': u'Dimmable light', u'state': {u'on': True, u'reachable': True, u'mode': u'homeautomation', u'bri': 254, u'alert': u'none'}, u'manufacturername': u'IKEA of Sweden', u'config': {u'function': u'functional', u'direction': u'omnidirectional', u'archetype': u'classicbulb'}, u'type': u'Dimmable light', u'modelid': u'TRADFRI bulb E14 W op/ch 400lm'}, u'1': {u'swversion': u'1.46.13_r26312', u'name': u'Luna', u'swupdate': {u'state': u'noupdates', u'lastinstall': u'2018-12-06T15:19:08'}, u'productid': u'Philips-LCT012-1-E14ECLv1', u'uniqueid': u'00:17:88:01:03:40:59:ad-0b', u'capabilities': {u'control': {u'ct': {u'max': 500, u'min': 153}, u'colorgamut': [[0.6915, 0.3083], [0.17, 0.7], [0.1532, 0.0475]], u'mindimlevel': 2000, u'maxlumen': 450, u'colorgamuttype': u'C'}, u'streaming': {u'renderer': True, u'proxy': True}, u'certified': True}, u'productname': u'Hue color candle', u'state': {u'on': False, u'hue': 8682, u'colormode': u'hs', u'effect': u'none', u'alert': u'select', u'xy': [0.5099, 0.4388], u'reachable': True, u'mode': u'homeautomation', u'bri': 254, u'ct': 463, u'sat': 245}, u'manufacturername': u'Philips', u'swconfigid': u'8C67986F', u'config': {u'function': u'mixed', u'startup': {u'configured': True, u'mode': u'safety'}, u'direction': u'omnidirectional', u'archetype': u'candlebulb'}, u'type': u'Extended color light', u'modelid': u'LCT012'}, u'3': {u'swversion': u'1.46.13_r26312', u'name': u'TV-1', u'swupdate': {u'state': u'noupdates', u'lastinstall': u'2018-12-06T15:19:15'}, u'productid': u'3241-3127-7871-LS00', u'uniqueid': u'00:17:88:01:04:53:55:b3-0b', u'capabilities': {u'control': {u'ct': {u'max': 500, u'min': 153}, u'colorgamut': [[0.6915, 0.3083], [0.17, 0.7], [0.1532, 0.0475]], u'mindimlevel': 500, u'maxlumen': 540, u'colorgamuttype': u'C'}, u'streaming': {u'renderer': True, u'proxy': True}, u'certified': True}, u'productname': u'Hue play', u'state': {u'on': False, u'hue': 8258, u'colormode': u'xy', u'effect': u'none', u'alert': u'select', u'xy': [0.5233, 0.4346], u'reachable': True, u'mode': u'homeautomation', u'bri': 1, u'ct': 488, u'sat': 254}, u'manufacturername': u'Philips', u'swconfigid': u'869E2FE2', u'config': {u'function': u'decorative', u'startup': {u'configured': True, u'mode': u'powerfail'}, u'direction': u'upwards', u'archetype': u'hueplay'}, u'type': u'Extended color light', u'modelid': u'LCT024'}, u'2': {u'swversion': u'1.46.13_r26312', u'name': u'Palloncino', u'swupdate': {u'state': u'noupdates', u'lastinstall': u'2018-12-06T15:19:03'}, u'productid': u'Philips-LCT012-1-E14ECLv1', u'uniqueid': u'00:17:88:01:03:40:59:a7-0b', u'capabilities': {u'control': {u'ct': {u'max': 500, u'min': 153}, u'colorgamut': [[0.6915, 0.3083], [0.17, 0.7], [0.1532, 0.0475]], u'mindimlevel': 2000, u'maxlumen': 450, u'colorgamuttype': u'C'}, u'streaming': {u'renderer': True, u'proxy': True}, u'certified': True}, u'productname': u'Hue color candle', u'state': {u'on': False, u'hue': 8418, u'colormode': u'ct', u'effect': u'none', u'alert': u'select', u'xy': [0.4573, 0.41], u'reachable': True, u'mode': u'homeautomation', u'bri': 254, u'ct': 366, u'sat': 140}, u'manufacturername': u'Philips', u'swconfigid': u'8C67986F', u'config': {u'function': u'mixed', u'startup': {u'configured': True, u'mode': u'powerfail'}, u'direction': u'omnidirectional', u'archetype': u'candlebulb'}, u'type': u'Extended color light', u'modelid': u'LCT012'}, u'5': {u'swversion': u'V1.04.12', u'name': u'Microonde', u'swupdate': {u'state': u'notupdatable', u'lastinstall': u'2019-11-15T14:08:34'}, u'uniqueid': u'7c:b0:3e:aa:0a:03:18:b7-03', u'capabilities': {u'control': {}, u'streaming': {u'renderer': False, u'proxy': False}, u'certified': False}, u'productname': u'On/Off plug', u'state': {u'on': False, u'reachable': True, u'mode': u'homeautomation', u'alert': u'select'}, u'manufacturername': u'OSRAM', u'config': {u'function': u'functional', u'direction': u'omnidirectional', u'archetype': u'classicbulb'}, u'type': u'On/Off plug-in unit', u'modelid': u'Plug 01'}, u'4': {u'swversion': u'1.46.13_r26312', u'name': u'TV-2', u'swupdate': {u'state': u'noupdates', u'lastinstall': u'2018-12-06T15:19:12'}, u'productid': u'3241-3127-7871-LS00', u'uniqueid': u'00:17:88:01:04:53:51:c2-0b', u'capabilities': {u'control': {u'ct': {u'max': 500, u'min': 153}, u'colorgamut': [[0.6915, 0.3083], [0.17, 0.7], [0.1532, 0.0475]], u'mindimlevel': 500, u'maxlumen': 540, u'colorgamuttype': u'C'}, u'streaming': {u'renderer': True, u'proxy': True}, u'certified': True}, u'productname': u'Hue play', u'state': {u'on': False, u'hue': 8136, u'colormode': u'xy', u'effect': u'none', u'alert': u'select', u'xy': [0.5257, 0.4328], u'reachable': True, u'mode': u'homeautomation', u'bri': 1, u'ct': 497, u'sat': 254}, u'manufacturername': u'Philips', u'swconfigid': u'869E2FE2', u'config': {u'function': u'decorative', u'startup': {u'configured': True, u'mode': u'powerfail'}, u'direction': u'upwards', u'archetype': u'hueplay'}, u'type': u'Extended color light', u'modelid': u'LCT024'}, u'7': {u'swversion': u'1.2.214', u'name': u'Divano2', u'swupdate': {u'state': u'notupdatable', u'lastinstall': u'2019-11-23T15:22:40'}, u'uniqueid': u'08:6b:d7:ff:fe:04:f7:54-01', u'capabilities': {u'control': {}, u'streaming': {u'renderer': False, u'proxy': False}, u'certified': False}, u'productname': u'Dimmable light', u'state': {u'on': True, u'reachable': True, u'mode': u'homeautomation', u'bri': 254, u'alert': u'select'}, u'manufacturername': u'IKEA of Sweden', u'config': {u'function': u'functional', u'direction': u'omnidirectional', u'archetype': u'classicbulb'}, u'type': u'Dimmable light', u'modelid': u'TRADFRI bulb E14 W op/ch 400lm'}, u'6': {u'swversion': u'1.2.214', u'name': u'Divano1', u'swupdate': {u'state': u'notupdatable', u'lastinstall': u'2019-11-23T15:00:02'}, u'uniqueid': u'08:6b:d7:ff:fe:1c:cc:33-01', u'capabilities': {u'control': {}, u'streaming': {u'renderer': False, u'proxy': False}, u'certified': False}, u'productname': u'Dimmable light', u'state': {u'on': True, u'reachable': True, u'mode': u'homeautomation', u'bri': 254, u'alert': u'select'}, u'manufacturername': u'IKEA of Sweden', u'config': {u'function': u'functional', u'direction': u'omnidirectional', u'archetype': u'classicbulb'}, u'type': u'Dimmable light', u'modelid': u'TRADFRI bulb E14 W op/ch 400lm'}, u'9': {u'swversion': u'1.2.214', u'name': u'Divano4', u'swupdate': {u'state': u'notupdatable', u'lastinstall': u'2019-11-23T15:30:05'}, u'uniqueid': u'd0:cf:5e:ff:fe:d9:d5:39-01', u'capabilities': {u'control': {}, u'streaming': {u'renderer': False, u'proxy': False}, u'certified': False}, u'productname': u'Dimmable light', u'state': {u'on': True, u'reachable': True, u'mode': u'homeautomation', u'bri': 254, u'alert': u'select'}, u'manufacturername': u'IKEA of Sweden', u'config': {u'function': u'functional', u'direction': u'omnidirectional', u'archetype': u'classicbulb'}, u'type': u'Dimmable light', u'modelid': u'TRADFRI bulb E14 W op/ch 400lm'}, u'8': {u'swversion': u'1.2.214', u'name': u'Divano3', u'swupdate': {u'state': u'notupdatable', u'lastinstall': u'2019-11-23T15:29:11'}, u'uniqueid': u'08:6b:d7:ff:fe:5a:93:c6-01', u'capabilities': {u'control': {}, u'streaming': {u'renderer': False, u'proxy': False}, u'certified': False}, u'productname': u'Dimmable light', u'state': {u'on': True, u'reachable': True, u'mode': u'homeautomation', u'bri': 254, u'alert': u'select'}, u'manufacturername': u'IKEA of Sweden', u'config': {u'function': u'functional', u'direction': u'omnidirectional', u'archetype': u'classicbulb'}, u'type': u'Dimmable light', u'modelid': u'TRADFRI bulb E14 W op/ch 400lm'}}
Hue Lights Debug Starting parseAllHueLightsData.
Hue Lights Debug parseAllHueLightsData: There are 11 lights on the Hue bridge and 10 Indigo devices controlling Hue devices.
Hue Lights Debug Starting updateGroupsList.
Hue Lights Debug Sending command to bridge: http://192.168.2.226/api/bMq1i5znvMMZKv ... k6J/groups
Hue Lights Debug Got response {u'1': {u'name': u'Bagno', u'lights': [], u'state': {u'any_on': False, u'all_on': False}, u'action': {u'on': False, u'alert': u'none'}, u'recycle': False, u'sensors': [], u'type': u'Room', u'class': u'Other'}, u'3': {u'name': u'Camera', u'lights': [], u'state': {u'any_on': False, u'all_on': False}, u'action': {u'on': False, u'alert': u'none'}, u'recycle': False, u'sensors': [], u'type': u'Room', u'class': u'Other'}, u'2': {u'name': u'Cucina', u'lights': [u'5'], u'state': {u'any_on': False, u'all_on': False}, u'action': {u'on': False, u'alert': u'select'}, u'recycle': False, u'sensors': [], u'type': u'Room', u'class': u'Other'}, u'5': {u'name': u'Terrazza', u'lights': [], u'state': {u'any_on': False, u'all_on': False}, u'action': {u'on': False, u'alert': u'none'}, u'recycle': False, u'sensors': [], u'type': u'Room', u'class': u'Other'}, u'4': {u'name': u'Cameretta', u'lights': [u'11', u'1', u'2'], u'state': {u'any_on': False, u'all_on': False}, u'action': {u'on': False, u'hue': 8418, u'colormode': u'ct', u'effect': u'none', u'alert': u'select', u'xy': [0.4573, 0.41], u'bri': 254, u'ct': 366, u'sat': 140}, u'recycle': False, u'sensors': [], u'type': u'Room', u'class': u'Nursery'}, u'7': {u'name': u'Standard', u'lights': [], u'state': {u'any_on': False, u'all_on': False}, u'action': {u'on': False, u'alert': u'none'}, u'recycle': False, u'sensors': [], u'type': u'Room', u'class': u'Other'}, u'6': {u'name': u'Sala', u'lights': [u'8', u'9', u'10', u'7', u'6', u'3', u'4'], u'state': {u'any_on': True, u'all_on': False}, u'action': {u'on': False, u'hue': 8136, u'colormode': u'xy', u'effect': u'none', u'alert': u'select', u'xy': [0.5257, 0.4328], u'bri': 1, u'ct': 497, u'sat': 254}, u'recycle': False, u'sensors': [], u'type': u'Room', u'class': u'Living room'}, u'9': {u'name': u'Area - TV', u'stream': {u'proxymode': u'auto', u'active': False, u'proxynode': u'/lights/4', u'owner': None}, u'locations': {u'3': [-0.55, 1.0, 0.0], u'4': [0.45, 0.99, 0.0]}, u'lights': [u'4', u'3'], u'state': {u'any_on': False, u'all_on': False}, u'action': {u'on': False, u'hue': 8258, u'colormode': u'xy', u'effect': u'none', u'alert': u'select', u'xy': [0.5233, 0.4346], u'bri': 1, u'ct': 488, u'sat': 254}, u'recycle': False, u'sensors': [], u'type': u'Entertainment', u'class': u'TV'}, u'8': {u'name': u'Corridoio', u'lights': [], u'state': {u'any_on': False, u'all_on': False}, u'action': {u'on': False, u'alert': u'none'}, u'recycle': False, u'sensors': [], u'type': u'Room', u'class': u'Other'}}
Hue Lights Debug Loaded groups list - {u'1': {u'name': u'Bagno', u'lights': [], u'state': {u'any_on': False, u'all_on': False}, u'action': {u'on': False, u'alert': u'none'}, u'recycle': False, u'sensors': [], u'type': u'Room', u'class': u'Other'}, u'3': {u'name': u'Camera', u'lights': [], u'state': {u'any_on': False, u'all_on': False}, u'action': {u'on': False, u'alert': u'none'}, u'recycle': False, u'sensors': [], u'type': u'Room', u'class': u'Other'}, u'2': {u'name': u'Cucina', u'lights': [u'5'], u'state': {u'any_on': False, u'all_on': False}, u'action': {u'on': False, u'alert': u'select'}, u'recycle': False, u'sensors': [], u'type': u'Room', u'class': u'Other'}, u'5': {u'name': u'Terrazza', u'lights': [], u'state': {u'any_on': False, u'all_on': False}, u'action': {u'on': False, u'alert': u'none'}, u'recycle': False, u'sensors': [], u'type': u'Room', u'class': u'Other'}, u'4': {u'name': u'Cameretta', u'lights': [u'11', u'1', u'2'], u'state': {u'any_on': False, u'all_on': False}, u'action': {u'on': False, u'hue': 8418, u'colormode': u'ct', u'effect': u'none', u'alert': u'select', u'xy': [0.4573, 0.41], u'bri': 254, u'ct': 366, u'sat': 140}, u'recycle': False, u'sensors': [], u'type': u'Room', u'class': u'Nursery'}, u'7': {u'name': u'Standard', u'lights': [], u'state': {u'any_on': False, u'all_on': False}, u'action': {u'on': False, u'alert': u'none'}, u'recycle': False, u'sensors': [], u'type': u'Room', u'class': u'Other'}, u'6': {u'name': u'Sala', u'lights': [u'8', u'9', u'10', u'7', u'6', u'3', u'4'], u'state': {u'any_on': True, u'all_on': False}, u'action': {u'on': False, u'hue': 8136, u'colormode': u'xy', u'effect': u'none', u'alert': u'select', u'xy': [0.5257, 0.4328], u'bri': 1, u'ct': 497, u'sat': 254}, u'recycle': False, u'sensors': [], u'type': u'Room', u'class': u'Living room'}, u'9': {u'name': u'Area - TV', u'stream': {u'proxymode': u'auto', u'active': False, u'proxynode': u'/lights/4', u'owner': None}, u'locations': {u'3': [-0.55, 1.0, 0.0], u'4': [0.45, 0.99, 0.0]}, u'lights': [u'4', u'3'], u'state': {u'any_on': False, u'all_on': False}, u'action': {u'on': False, u'hue': 8258, u'colormode': u'xy', u'effect': u'none', u'alert': u'select', u'xy': [0.5233, 0.4346], u'bri': 1, u'ct': 488, u'sat': 254}, u'recycle': False, u'sensors': [], u'type': u'Entertainment', u'class': u'TV'}, u'8': {u'name': u'Corridoio', u'lights': [], u'state': {u'any_on': False, u'all_on': False}, u'action': {u'on': False, u'alert': u'none'}, u'recycle': False, u'sensors': [], u'type': u'Room', u'class': u'Other'}}
Hue Lights Debug Starting parseAllHueGroupsData.
Hue Lights Turning off debug logging
Hue Lights Debug Turning off debug logging (Toggle Debugging menu item chosen).



I cannot add it to the plugin

Posted on
Sun Dec 01, 2019 5:00 am
nsheldon offline
Posts: 2469
Joined: Aug 09, 2010
Location: CA

Re: Hue Lights discussion

Version 1.7.19 Posted

  • Added support for the Hue GU10 version 2 bulb.
  • Added support for an IKEA dimmable 600 lumen E14 color bulb.

@Paul: Still working on that Hue Smart button compatibility. It may be a bit before the plugin has a separate device definition for that button, but we'll get there.

Posted on
Mon Dec 02, 2019 2:51 am
forestfield offline
Posts: 83
Joined: Dec 29, 2014
Location: West Sussex

Re: Hue Lights discussion

@Paul: Still working on that Hue Smart button compatibility


Thanks
-- Paul --

Posted on
Tue Dec 03, 2019 10:43 am
Mirko offline
Posts: 79
Joined: Dec 04, 2014

Re: Hue Lights discussion

Hi Nathan,

I use the HUE plugin. Great plug in!

I have a bug with the Philips HUE White lamp. I cannot add this lamp as a device in INDIGO.
It simply doesn't show.

I think I found a workaround:
In the HUE app on my iPhone 7 I create an extra 'Group", add this lamp as the only device and then in INDIGO HUE plugin I add this group as the Indigo DEVICE. In this group the lamp appears in light grey letters. And then I treat this 'group' as a device.

Maybe you can help me out here?

Indigo is running on a headless MacMini 10.12.6 with Indigo 7.3

Thanks!

Mirko

Posted on
Tue Dec 03, 2019 11:49 am
CliveS offline
Posts: 761
Joined: Jan 10, 2016
Location: Medomsley, County Durham, UK

Re: Hue Lights discussion

New Hue Colour bulb LCA001, seems to be the B22 version of the LCA002 A19

Code: Select all
# LCA001   =   Hue color lamp (B22, color gamut C)
# LCA002   =   Hue color lamp (A19, color gamut C)



Just added to the

Code: Select all
### LIGHTS ###
##############
# Compatible Hue bulb devices (Color and Color Temperature)
kHueBulbDeviceIDs = ['LCT001', 'LCT002', 'LCT003', 'LCT007', 'LCT010', 'LCT011', 'LCT012', 'LCT014', 'LCT015', 'LCT016', 'LCT024', 'LCS001', 'LCF001', 'LCF002', 'LCF003', 'LCG002', 'LCA001', 'LCA002', 'LLM001', 'HBL001', 'HBL002', 'HBL003', 'HEL001', 'HEL002,' 'HIL001', 'HIL002', 'FLS-PP3', 'Classic A60 RGBW', 'Gardenpole Mini RGBW OSRAM', 'PAR 16 50 RGBW - LIGHTIFY', 'RB 185 C']


Code: Select all
2019-12-01 16:46:09.553   Hue Lights Debug   Starting updateLightsList.
2019-12-01 16:46:09.553   Hue Lights Debug   Sending command to bridge: http://192.168.100.240/api/t5sDCMjzW8pOi0-qcavInWJ5TH1fJkT8SvqnZene/lights
2019-12-01 16:46:09.589   Hue Lights Debug   Got response {u'11': {u'swversion': u'5.127.1.26420', u'name': u'Hall 2 Ceiling Light', u'swupdate': {u'state': u'noupdates', u'lastinstall': u'2018-12-18T07:53:59'}, u'uniqueid': u'00:17:88:01:10:3a:28:10-0b', u'capabilities': {u'control': {u'mindimlevel': 2000, u'maxlumen': 800}, u'streaming': {u'renderer': False, u'proxy': False}, u'certified': True}, u'productname': u'Hue white lamp', u'state': {u'on': False, u'reachable': False, u'mode': u'homeautomation', u'bri': 254, u'alert': u'none'}, u'manufacturername': u'Philips', u'config': {u'function': u'functional', u'startup': {u'configured': True, u'mode': u'powerfail'}, u'direction': u'omnidirectional', u'archetype': u'classicbulb'}, u'type': u'Dimmable light', u'modelid': u'LWB006'}, u'24': {u'swversion': u'5.127.1.26420', u'name': u'Living Room Gold Lamp', u'swupdate': {u'state': u'noupdates', u'lastinstall': u'2018-12-15T00:48:15'}, u'uniqueid': u'00:17:88:01:02:b8:ad:9c-0b', u'capabilities': {u'control': {u'ct': {u'max': 500, u'min': 153}, u'colorgamut': [[0.675, 0.322], [0.409, 0.518], [0.167, 0.04]], u'mindimlevel': 5000, u'maxlumen': 250, u'colorgamuttype': u'B'}, u'streaming': {u'renderer': True, u'proxy': True}, u'certified': True}, u'productname': u'Hue color spot', u'state': {u'on': True, u'hue': 8127, u'colormode': u'hs', u'effect': u'none', u'alert': u'select', u'xy': [0.5219, 0.3818], u'reachable': True, u'mode': u'homeautomation', u'bri': 128, u'ct': 488, u'sat': 171}, u'manufacturername': u'Philips', u'config': {u'function': u'mixed', u'startup': {u'configured': True, u'mode': u'powerfail'}, u'direction': u'downwards', u'archetype': u'spotbulb'}, u'type': u'Extended color light', u'modelid': u'LCT003'}, u'13': {u'swversion': u'1.46.13_r26312', u'name': u'Jane Lamp', u'swupdate': {u'state': u'noupdates', u'lastinstall': u'2018-12-06T00:37:25'}, u'productid': u'Philips-LTW012-1-E14CTv1', u'uniqueid': u'00:17:88:01:02:63:21:5a-0b', u'capabilities': {u'control': {u'mindimlevel': 2000, u'maxlumen': 450, u'ct': {u'max': 454, u'min': 153}}, u'streaming': {u'renderer': False, u'proxy': False}, u'certified': True}, u'productname': u'Hue ambiance candle', u'state': {u'on': False, u'colormode': u'ct', u'alert': u'none', u'reachable': True, u'mode': u'homeautomation', u'bri': 1, u'ct': 366}, u'manufacturername': u'Philips', u'swconfigid': u'5E2017D8', u'config': {u'function': u'decorative', u'startup': {u'configured': True, u'mode': u'powerfail'}, u'direction': u'omnidirectional', u'archetype': u'candlebulb'}, u'type': u'Color temperature light', u'modelid': u'LTW012'}, u'12': {u'swversion': u'5.127.1.26420', u'name': u'Bedroom 1 Ceiling Light', u'swupdate': {u'state': u'noupdates', u'lastinstall': u'2018-12-19T12:36:37'}, u'uniqueid': u'00:17:88:01:10:59:63:5c-0b', u'capabilities': {u'control': {u'mindimlevel': 2000, u'maxlumen': 800}, u'streaming': {u'renderer': False, u'proxy': False}, u'certified': True}, u'productname': u'Hue white lamp', u'state': {u'on': False, u'reachable': False, u'mode': u'homeautomation', u'bri': 254, u'alert': u'none'}, u'manufacturername': u'Philips', u'config': {u'function': u'functional', u'startup': {u'configured': True, u'mode': u'powerfail'}, u'direction': u'omnidirectional', u'archetype': u'classicbulb'}, u'type': u'Dimmable light', u'modelid': u'LWB006'}, u'17': {u'swversion': u'1.46.13_r26312', u'name': u'Front Door Light', u'swupdate': {u'state': u'noupdates', u'lastinstall': u'2018-12-06T00:37:30'}, u'productid': u'Philips-LCT015-1-A19ECLv5', u'uniqueid': u'00:17:88:01:03:fa:62:72-0b', u'capabilities': {u'control': {u'ct': {u'max': 500, u'min': 153}, u'colorgamut': [[0.6915, 0.3083], [0.17, 0.7], [0.1532, 0.0475]], u'mindimlevel': 1000, u'maxlumen': 806, u'colorgamuttype': u'C'}, u'streaming': {u'renderer': True, u'proxy': True}, u'certified': True}, u'productname': u'Hue color lamp', u'state': {u'on': False, u'hue': 0, u'colormode': u'hs', u'effect': u'none', u'alert': u'select', u'xy': [0.3804, 0.3768], u'reachable': True, u'mode': u'homeautomation', u'bri': 1, u'ct': 247, u'sat': 0}, u'manufacturername': u'Philips', u'swconfigid': u'52E3234B', u'config': {u'function': u'mixed', u'startup': {u'configured': True, u'mode': u'powerfail'}, u'direction': u'omnidirectional', u'archetype': u'sultanbulb'}, u'type': u'Extended color light', u'modelid': u'LCT015'}, u'23': {u'swversion': u'1.46.13_r26312', u'name': u'Clive Lamp', u'swupdate': {u'state': u'noupdates', u'lastinstall': u'2018-12-06T00:37:05'}, u'productid': u'Philips-LTW012-1-E14CTv1', u'uniqueid': u'00:17:88:01:02:1d:1b:e1-0b', u'capabilities': {u'control': {u'mindimlevel': 2000, u'maxlumen': 450, u'ct': {u'max': 454, u'min': 153}}, u'streaming': {u'renderer': False, u'proxy': False}, u'certified': True}, u'productname': u'Hue ambiance candle', u'state': {u'on': False, u'colormode': u'ct', u'alert': u'select', u'reachable': True, u'mode': u'homeautomation', u'bri': 1, u'ct': 366}, u'manufacturername': u'Philips', u'swconfigid': u'5E2017D8', u'config': {u'function': u'decorative', u'startup': {u'configured': True, u'mode': u'powerfail'}, u'direction': u'omnidirectional', u'archetype': u'candlebulb'}, u'type': u'Color temperature light', u'modelid': u'LTW012'}, u'19': {u'swversion': u'1.46.13_r26312', u'name': u'Garage Light', u'swupdate': {u'state': u'noupdates', u'lastinstall': u'2018-12-06T00:37:11'}, u'productid': u'Philips-LCT015-1-A19ECLv5', u'uniqueid': u'00:17:88:01:03:86:46:51-0b', u'capabilities': {u'control': {u'ct': {u'max': 500, u'min': 153}, u'colorgamut': [[0.6915, 0.3083], [0.17, 0.7], [0.1532, 0.0475]], u'mindimlevel': 1000, u'maxlumen': 806, u'colorgamuttype': u'C'}, u'streaming': {u'renderer': True, u'proxy': True}, u'certified': True}, u'productname': u'Hue color lamp', u'state': {u'on': True, u'hue': 63671, u'colormode': u'hs', u'effect': u'none', u'alert': u'select', u'xy': [0.637, 0.2819], u'reachable': True, u'mode': u'homeautomation', u'bri': 254, u'ct': 153, u'sat': 254}, u'manufacturername': u'Philips', u'swconfigid': u'52E3234B', u'config': {u'function': u'mixed', u'startup': {u'configured': True, u'mode': u'powerfail'}, u'direction': u'omnidirectional', u'archetype': u'sultanbulb'}, u'type': u'Extended color light', u'modelid': u'LCT015'}, u'30': {u'swversion': u'1.53.3_r27175', u'name': u'Living Room Colour Lamp', u'swupdate': {u'state': u'noupdates', u'lastinstall': u'2019-12-01T16:36:02'}, u'productid': u'Philips-LCA001-5-A19ECLv6', u'uniqueid': u'00:17:88:01:06:1f:f8:fe-0b', u'capabilities': {u'control': {u'ct': {u'max': 500, u'min': 153}, u'colorgamut': [[0.6915, 0.3083], [0.17, 0.7], [0.1532, 0.0475]], u'mindimlevel': 200, u'maxlumen': 800, u'colorgamuttype': u'C'}, u'streaming': {u'renderer': True, u'proxy': True}, u'certified': True}, u'productname': u'Hue color lamp', u'state': {u'on': True, u'hue': 8418, u'colormode': u'ct', u'effect': u'none', u'alert': u'select', u'xy': [0.4573, 0.41], u'reachable': True, u'mode': u'homeautomation', u'bri': 254, u'ct': 366, u'sat': 140}, u'manufacturername': u'Philips', u'swconfigid': u'297C5CDD', u'config': {u'function': u'mixed', u'startup': {u'configured': True, u'mode': u'safety'}, u'direction': u'omnidirectional', u'archetype': u'sultanbulb'}, u'type': u'Extended color light', u'modelid': u'LCA001'}, u'28': {u'swversion': u'1.46.13_r26312', u'name': u'Bedroom 3 Ceiling Light', u'swupdate': {u'state': u'noupdates', u'lastinstall': u'2019-11-30T09:04:35'}, u'productid': u'Philips-LWB010-1-A19DLv3', u'uniqueid': u'00:17:88:01:02:6c:a3:0c-0b', u'capabilities': {u'control': {u'mindimlevel': 5000, u'maxlumen': 806}, u'streaming': {u'renderer': False, u'proxy': False}, u'certified': True}, u'productname': u'Hue white lamp', u'state': {u'on': False, u'reachable': False, u'mode': u'homeautomation', u'bri': 254, u'alert': u'select'}, u'manufacturername': u'Philips', u'swconfigid': u'564ABA6B', u'config': {u'function': u'functional', u'startup': {u'configured': True, u'mode': u'powerfail'}, u'direction': u'omnidirectional', u'archetype': u'classicbulb'}, u'type': u'Dimmable light', u'modelid': u'LWB010'}, u'26': {u'swversion': u'1.46.13_r26312', u'name': u'Hall Porch Ceiling Light', u'swupdate': {u'state': u'noupdates', u'lastinstall': u'2018-12-06T00:37:15'}, u'productid': u'Philips-LWB010-1-A19DLv3', u'uniqueid': u'00:17:88:01:02:6c:5e:26-0b', u'capabilities': {u'control': {u'mindimlevel': 5000, u'maxlumen': 806}, u'streaming': {u'renderer': False, u'proxy': False}, u'certified': True}, u'productname': u'Hue white lamp', u'state': {u'on': False, u'reachable': False, u'mode': u'homeautomation', u'bri': 254, u'alert': u'none'}, u'manufacturername': u'Philips', u'swconfigid': u'564ABA6B', u'config': {u'function': u'functional', u'startup': {u'configured': True, u'mode': u'powerfail'}, u'direction': u'omnidirectional', u'archetype': u'classicbulb'}, u'type': u'Dimmable light', u'modelid': u'LWB010'}, u'29': {u'swversion': u'1.53.3_r27175', u'name': u'Hue color lamp 1', u'swupdate': {u'state': u'noupdates', u'lastinstall': u'2019-12-01T15:32:30'}, u'productid': u'Philips-LCA001-5-A19ECLv6', u'uniqueid': u'00:17:88:01:06:1f:f8:f8-0b', u'capabilities': {u'control': {u'ct': {u'max': 500, u'min': 153}, u'colorgamut': [[0.6915, 0.3083], [0.17, 0.7], [0.1532, 0.0475]], u'mindimlevel': 200, u'maxlumen': 800, u'colorgamuttype': u'C'}, u'streaming': {u'renderer': True, u'proxy': True}, u'certified': True}, u'productname': u'Hue color lamp', u'state': {u'on': True, u'hue': 8418, u'colormode': u'ct', u'effect': u'none', u'alert': u'none', u'xy': [0.4573, 0.41], u'reachable': False, u'mode': u'homeautomation', u'bri': 254, u'ct': 366, u'sat': 140}, u'manufacturername': u'Philips', u'swconfigid': u'297C5CDD', u'config': {u'function': u'mixed', u'startup': {u'configured': True, u'mode': u'safety'}, u'direction': u'omnidirectional', u'archetype': u'sultanbulb'}, u'type': u'Extended color light', u'modelid': u'LCA001'}, u'1': {u'swversion': u'5.127.1.26420', u'name': u'Conservatory Light', u'swupdate': {u'state': u'noupdates', u'lastinstall': u'2018-12-15T00:49:26'}, u'uniqueid': u'00:17:88:01:10:59:65:e0-0b', u'capabilities': {u'control': {u'mindimlevel': 2000, u'maxlumen': 800}, u'streaming': {u'renderer': False, u'proxy': False}, u'certified': True}, u'productname': u'Hue white lamp', u'state': {u'on': False, u'reachable': True, u'mode': u'homeautomation', u'bri': 254, u'alert': u'none'}, u'manufacturername': u'Philips', u'config': {u'function': u'functional', u'startup': {u'configured': True, u'mode': u'powerfail'}, u'direction': u'omnidirectional', u'archetype': u'classicbulb'}, u'type': u'Dimmable light', u'modelid': u'LWB006'}, u'3': {u'swversion': u'5.127.1.26420', u'name': u'Bedroom 2 Ceiling Light', u'swupdate': {u'state': u'noupdates', u'lastinstall': u'2019-11-30T11:00:51'}, u'uniqueid': u'00:17:88:01:10:58:44:0d-0b', u'capabilities': {u'control': {u'mindimlevel': 2000, u'maxlumen': 800}, u'streaming': {u'renderer': False, u'proxy': False}, u'certified': True}, u'productname': u'Hue white lamp', u'state': {u'on': True, u'reachable': False, u'mode': u'homeautomation', u'bri': 254, u'alert': u'none'}, u'manufacturername': u'Philips', u'config': {u'function': u'functional', u'startup': {u'configured': True, u'mode': u'safety'}, u'direction': u'omnidirectional', u'archetype': u'classicbulb'}, u'type': u'Dimmable light', u'modelid': u'LWB006'}, u'2': {u'swversion': u'5.127.1.26420', u'name': u'Hall 1 Ceiling Light', u'swupdate': {u'state': u'noupdates', u'lastinstall': u'2019-03-09T12:59:56'}, u'uniqueid': u'00:17:88:01:10:3a:3b:c5-0b', u'capabilities': {u'control': {u'mindimlevel': 2000, u'maxlumen': 800}, u'streaming': {u'renderer': False, u'proxy': False}, u'certified': True}, u'productname': u'Hue white lamp', u'state': {u'on': False, u'reachable': False, u'mode': u'homeautomation', u'bri': 254, u'alert': u'none'}, u'manufacturername': u'Philips', u'config': {u'function': u'functional', u'startup': {u'configured': True, u'mode': u'powerfail'}, u'direction': u'omnidirectional', u'archetype': u'classicbulb'}, u'type': u'Dimmable light', u'modelid': u'LWB006'}, u'5': {u'swversion': u'1.46.13_r26312', u'name': u'Hall Table Lamp', u'swupdate': {u'state': u'noupdates', u'lastinstall': u'2018-12-06T00:37:19'}, u'productid': u'Philips-LCT010-1-A19ECLv4', u'uniqueid': u'00:17:88:01:02:73:5c:90-0b', u'capabilities': {u'control': {u'ct': {u'max': 500, u'min': 153}, u'colorgamut': [[0.6915, 0.3083], [0.17, 0.7], [0.1532, 0.0475]], u'mindimlevel': 1000, u'maxlumen': 806, u'colorgamuttype': u'C'}, u'streaming': {u'renderer': True, u'proxy': True}, u'certified': True}, u'productname': u'Hue color lamp', u'state': {u'on': False, u'hue': 8127, u'colormode': u'hs', u'effect': u'none', u'alert': u'none', u'xy': [0.4784, 0.4144], u'reachable': True, u'mode': u'homeautomation', u'bri': 1, u'ct': 399, u'sat': 171}, u'manufacturername': u'Philips', u'swconfigid': u'0CE67A8F', u'config': {u'function': u'mixed', u'startup': {u'configured': True, u'mode': u'powerfail'}, u'direction': u'omnidirectional', u'archetype': u'sultanbulb'}, u'type': u'Extended color light', u'modelid': u'LCT010'}, u'4': {u'swversion': u'5.127.1.26420', u'name': u'Hall Coat Cupboard Light', u'swupdate': {u'state': u'noupdates', u'lastinstall': u'2018-12-15T00:49:15'}, u'uniqueid': u'00:17:88:01:10:4c:53:d4-0b', u'capabilities': {u'control': {u'mindimlevel': 2000, u'maxlumen': 800}, u'streaming': {u'renderer': False, u'proxy': False}, u'certified': True}, u'productname': u'Hue white lamp', u'state': {u'on': False, u'reachable': True, u'mode': u'homeautomation', u'bri': 1, u'alert': u'none'}, u'manufacturername': u'Philips', u'config': {u'function': u'functional', u'startup': {u'configured': True, u'mode': u'powerfail'}, u'direction': u'omnidirectional', u'archetype': u'classicbulb'}, u'type': u'Dimmable light', u'modelid': u'LWB006'}}
2019-12-01 16:46:09.590   Hue Lights Debug   Loaded lights list - {u'11': {u'swversion': u'5.127.1.26420', u'name': u'Hall 2 Ceiling Light', u'swupdate': {u'state': u'noupdates', u'lastinstall': u'2018-12-18T07:53:59'}, u'uniqueid': u'00:17:88:01:10:3a:28:10-0b', u'capabilities': {u'control': {u'mindimlevel': 2000, u'maxlumen': 800}, u'streaming': {u'renderer': False, u'proxy': False}, u'certified': True}, u'productname': u'Hue white lamp', u'state': {u'on': False, u'reachable': False, u'mode': u'homeautomation', u'bri': 254, u'alert': u'none'}, u'manufacturername': u'Philips', u'config': {u'function': u'functional', u'startup': {u'configured': True, u'mode': u'powerfail'}, u'direction': u'omnidirectional', u'archetype': u'classicbulb'}, u'type': u'Dimmable light', u'modelid': u'LWB006'}, u'24': {u'swversion': u'5.127.1.26420', u'name': u'Living Room Gold Lamp', u'swupdate': {u'state': u'noupdates', u'lastinstall': u'2018-12-15T00:48:15'}, u'uniqueid': u'00:17:88:01:02:b8:ad:9c-0b', u'capabilities': {u'control': {u'ct': {u'max': 500, u'min': 153}, u'colorgamut': [[0.675, 0.322], [0.409, 0.518], [0.167, 0.04]], u'mindimlevel': 5000, u'maxlumen': 250, u'colorgamuttype': u'B'}, u'streaming': {u'renderer': True, u'proxy': True}, u'certified': True}, u'productname': u'Hue color spot', u'state': {u'on': True, u'hue': 8127, u'colormode': u'hs', u'effect': u'none', u'alert': u'select', u'xy': [0.5219, 0.3818], u'reachable': True, u'mode': u'homeautomation', u'bri': 128, u'ct': 488, u'sat': 171}, u'manufacturername': u'Philips', u'config': {u'function': u'mixed', u'startup': {u'configured': True, u'mode': u'powerfail'}, u'direction': u'downwards', u'archetype': u'spotbulb'}, u'type': u'Extended color light', u'modelid': u'LCT003'}, u'13': {u'swversion': u'1.46.13_r26312', u'name': u'Jane Lamp', u'swupdate': {u'state': u'noupdates', u'lastinstall': u'2018-12-06T00:37:25'}, u'productid': u'Philips-LTW012-1-E14CTv1', u'uniqueid': u'00:17:88:01:02:63:21:5a-0b', u'capabilities': {u'control': {u'mindimlevel': 2000, u'maxlumen': 450, u'ct': {u'max': 454, u'min': 153}}, u'streaming': {u'renderer': False, u'proxy': False}, u'certified': True}, u'productname': u'Hue ambiance candle', u'state': {u'on': False, u'colormode': u'ct', u'alert': u'none', u'reachable': True, u'mode': u'homeautomation', u'bri': 1, u'ct': 366}, u'manufacturername': u'Philips', u'swconfigid': u'5E2017D8', u'config': {u'function': u'decorative', u'startup': {u'configured': True, u'mode': u'powerfail'}, u'direction': u'omnidirectional', u'archetype': u'candlebulb'}, u'type': u'Color temperature light', u'modelid': u'LTW012'}, u'12': {u'swversion': u'5.127.1.26420', u'name': u'Bedroom 1 Ceiling Light', u'swupdate': {u'state': u'noupdates', u'lastinstall': u'2018-12-19T12:36:37'}, u'uniqueid': u'00:17:88:01:10:59:63:5c-0b', u'capabilities': {u'control': {u'mindimlevel': 2000, u'maxlumen': 800}, u'streaming': {u'renderer': False, u'proxy': False}, u'certified': True}, u'productname': u'Hue white lamp', u'state': {u'on': False, u'reachable': False, u'mode': u'homeautomation', u'bri': 254, u'alert': u'none'}, u'manufacturername': u'Philips', u'config': {u'function': u'functional', u'startup': {u'configured': True, u'mode': u'powerfail'}, u'direction': u'omnidirectional', u'archetype': u'classicbulb'}, u'type': u'Dimmable light', u'modelid': u'LWB006'}, u'17': {u'swversion': u'1.46.13_r26312', u'name': u'Front Door Light', u'swupdate': {u'state': u'noupdates', u'lastinstall': u'2018-12-06T00:37:30'}, u'productid': u'Philips-LCT015-1-A19ECLv5', u'uniqueid': u'00:17:88:01:03:fa:62:72-0b', u'capabilities': {u'control': {u'ct': {u'max': 500, u'min': 153}, u'colorgamut': [[0.6915, 0.3083], [0.17, 0.7], [0.1532, 0.0475]], u'mindimlevel': 1000, u'maxlumen': 806, u'colorgamuttype': u'C'}, u'streaming': {u'renderer': True, u'proxy': True}, u'certified': True}, u'productname': u'Hue color lamp', u'state': {u'on': False, u'hue': 0, u'colormode': u'hs', u'effect': u'none', u'alert': u'select', u'xy': [0.3804, 0.3768], u'reachable': True, u'mode': u'homeautomation', u'bri': 1, u'ct': 247, u'sat': 0}, u'manufacturername': u'Philips', u'swconfigid': u'52E3234B', u'config': {u'function': u'mixed', u'startup': {u'configured': True, u'mode': u'powerfail'}, u'direction': u'omnidirectional', u'archetype': u'sultanbulb'}, u'type': u'Extended color light', u'modelid': u'LCT015'}, u'23': {u'swversion': u'1.46.13_r26312', u'name': u'Clive Lamp', u'swupdate': {u'state': u'noupdates', u'lastinstall': u'2018-12-06T00:37:05'}, u'productid': u'Philips-LTW012-1-E14CTv1', u'uniqueid': u'00:17:88:01:02:1d:1b:e1-0b', u'capabilities': {u'control': {u'mindimlevel': 2000, u'maxlumen': 450, u'ct': {u'max': 454, u'min': 153}}, u'streaming': {u'renderer': False, u'proxy': False}, u'certified': True}, u'productname': u'Hue ambiance candle', u'state': {u'on': False, u'colormode': u'ct', u'alert': u'select', u'reachable': True, u'mode': u'homeautomation', u'bri': 1, u'ct': 366}, u'manufacturername': u'Philips', u'swconfigid': u'5E2017D8', u'config': {u'function': u'decorative', u'startup': {u'configured': True, u'mode': u'powerfail'}, u'direction': u'omnidirectional', u'archetype': u'candlebulb'}, u'type': u'Color temperature light', u'modelid': u'LTW012'}, u'19': {u'swversion': u'1.46.13_r26312', u'name': u'Garage Light', u'swupdate': {u'state': u'noupdates', u'lastinstall': u'2018-12-06T00:37:11'}, u'productid': u'Philips-LCT015-1-A19ECLv5', u'uniqueid': u'00:17:88:01:03:86:46:51-0b', u'capabilities': {u'control': {u'ct': {u'max': 500, u'min': 153}, u'colorgamut': [[0.6915, 0.3083], [0.17, 0.7], [0.1532, 0.0475]], u'mindimlevel': 1000, u'maxlumen': 806, u'colorgamuttype': u'C'}, u'streaming': {u'renderer': True, u'proxy': True}, u'certified': True}, u'productname': u'Hue color lamp', u'state': {u'on': True, u'hue': 63671, u'colormode': u'hs', u'effect': u'none', u'alert': u'select', u'xy': [0.637, 0.2819], u'reachable': True, u'mode': u'homeautomation', u'bri': 254, u'ct': 153, u'sat': 254}, u'manufacturername': u'Philips', u'swconfigid': u'52E3234B', u'config': {u'function': u'mixed', u'startup': {u'configured': True, u'mode': u'powerfail'}, u'direction': u'omnidirectional', u'archetype': u'sultanbulb'}, u'type': u'Extended color light', u'modelid': u'LCT015'}, u'30': {u'swversion': u'1.53.3_r27175', u'name': u'Living Room Colour Lamp', u'swupdate': {u'state': u'noupdates', u'lastinstall': u'2019-12-01T16:36:02'}, u'productid': u'Philips-LCA001-5-A19ECLv6', u'uniqueid': u'00:17:88:01:06:1f:f8:fe-0b', u'capabilities': {u'control': {u'ct': {u'max': 500, u'min': 153}, u'colorgamut': [[0.6915, 0.3083], [0.17, 0.7], [0.1532, 0.0475]], u'mindimlevel': 200, u'maxlumen': 800, u'colorgamuttype': u'C'}, u'streaming': {u'renderer': True, u'proxy': True}, u'certified': True}, u'productname': u'Hue color lamp', u'state': {u'on': True, u'hue': 8418, u'colormode': u'ct', u'effect': u'none', u'alert': u'select', u'xy': [0.4573, 0.41], u'reachable': True, u'mode': u'homeautomation', u'bri': 254, u'ct': 366, u'sat': 140}, u'manufacturername': u'Philips', u'swconfigid': u'297C5CDD', u'config': {u'function': u'mixed', u'startup': {u'configured': True, u'mode': u'safety'}, u'direction': u'omnidirectional', u'archetype': u'sultanbulb'}, u'type': u'Extended color light', u'modelid': u'LCA001'}, u'28': {u'swversion': u'1.46.13_r26312', u'name': u'Bedroom 3 Ceiling Light', u'swupdate': {u'state': u'noupdates', u'lastinstall': u'2019-11-30T09:04:35'}, u'productid': u'Philips-LWB010-1-A19DLv3', u'uniqueid': u'00:17:88:01:02:6c:a3:0c-0b', u'capabilities': {u'control': {u'mindimlevel': 5000, u'maxlumen': 806}, u'streaming': {u'renderer': False, u'proxy': False}, u'certified': True}, u'productname': u'Hue white lamp', u'state': {u'on': False, u'reachable': False, u'mode': u'homeautomation', u'bri': 254, u'alert': u'select'}, u'manufacturername': u'Philips', u'swconfigid': u'564ABA6B', u'config': {u'function': u'functional', u'startup': {u'configured': True, u'mode': u'powerfail'}, u'direction': u'omnidirectional', u'archetype': u'classicbulb'}, u'type': u'Dimmable light', u'modelid': u'LWB010'}, u'26': {u'swversion': u'1.46.13_r26312', u'name': u'Hall Porch Ceiling Light', u'swupdate': {u'state': u'noupdates', u'lastinstall': u'2018-12-06T00:37:15'}, u'productid': u'Philips-LWB010-1-A19DLv3', u'uniqueid': u'00:17:88:01:02:6c:5e:26-0b', u'capabilities': {u'control': {u'mindimlevel': 5000, u'maxlumen': 806}, u'streaming': {u'renderer': False, u'proxy': False}, u'certified': True}, u'productname': u'Hue white lamp', u'state': {u'on': False, u'reachable': False, u'mode': u'homeautomation', u'bri': 254, u'alert': u'none'}, u'manufacturername': u'Philips', u'swconfigid': u'564ABA6B', u'config': {u'function': u'functional', u'startup': {u'configured': True, u'mode': u'powerfail'}, u'direction': u'omnidirectional', u'archetype': u'classicbulb'}, u'type': u'Dimmable light', u'modelid': u'LWB010'}, u'29': {u'swversion': u'1.53.3_r27175', u'name': u'Hue color lamp 1', u'swupdate': {u'state': u'noupdates', u'lastinstall': u'2019-12-01T15:32:30'}, u'productid': u'Philips-LCA001-5-A19ECLv6', u'uniqueid': u'00:17:88:01:06:1f:f8:f8-0b', u'capabilities': {u'control': {u'ct': {u'max': 500, u'min': 153}, u'colorgamut': [[0.6915, 0.3083], [0.17, 0.7], [0.1532, 0.0475]], u'mindimlevel': 200, u'maxlumen': 800, u'colorgamuttype': u'C'}, u'streaming': {u'renderer': True, u'proxy': True}, u'certified': True}, u'productname': u'Hue color lamp', u'state': {u'on': True, u'hue': 8418, u'colormode': u'ct', u'effect': u'none', u'alert': u'none', u'xy': [0.4573, 0.41], u'reachable': False, u'mode': u'homeautomation', u'bri': 254, u'ct': 366, u'sat': 140}, u'manufacturername': u'Philips', u'swconfigid': u'297C5CDD', u'config': {u'function': u'mixed', u'startup': {u'configured': True, u'mode': u'safety'}, u'direction': u'omnidirectional', u'archetype': u'sultanbulb'}, u'type': u'Extended color light', u'modelid': u'LCA001'}, u'1': {u'swversion': u'5.127.1.26420', u'name': u'Conservatory Light', u'swupdate': {u'state': u'noupdates', u'lastinstall': u'2018-12-15T00:49:26'}, u'uniqueid': u'00:17:88:01:10:59:65:e0-0b', u'capabilities': {u'control': {u'mindimlevel': 2000, u'maxlumen': 800}, u'streaming': {u'renderer': False, u'proxy': False}, u'certified': True}, u'productname': u'Hue white lamp', u'state': {u'on': False, u'reachable': True, u'mode': u'homeautomation', u'bri': 254, u'alert': u'none'}, u'manufacturername': u'Philips', u'config': {u'function': u'functional', u'startup': {u'configured': True, u'mode': u'powerfail'}, u'direction': u'omnidirectional', u'archetype': u'classicbulb'}, u'type': u'Dimmable light', u'modelid': u'LWB006'}, u'3': {u'swversion': u'5.127.1.26420', u'name': u'Bedroom 2 Ceiling Light', u'swupdate': {u'state': u'noupdates', u'lastinstall': u'2019-11-30T11:00:51'}, u'uniqueid': u'00:17:88:01:10:58:44:0d-0b', u'capabilities': {u'control': {u'mindimlevel': 2000, u'maxlumen': 800}, u'streaming': {u'renderer': False, u'proxy': False}, u'certified': True}, u'productname': u'Hue white lamp', u'state': {u'on': True, u'reachable': False, u'mode': u'homeautomation', u'bri': 254, u'alert': u'none'}, u'manufacturername': u'Philips', u'config': {u'function': u'functional', u'startup': {u'configured': True, u'mode': u'safety'}, u'direction': u'omnidirectional', u'archetype': u'classicbulb'}, u'type': u'Dimmable light', u'modelid': u'LWB006'}, u'2': {u'swversion': u'5.127.1.26420', u'name': u'Hall 1 Ceiling Light', u'swupdate': {u'state': u'noupdates', u'lastinstall': u'2019-03-09T12:59:56'}, u'uniqueid': u'00:17:88:01:10:3a:3b:c5-0b', u'capabilities': {u'control': {u'mindimlevel': 2000, u'maxlumen': 800}, u'streaming': {u'renderer': False, u'proxy': False}, u'certified': True}, u'productname': u'Hue white lamp', u'state': {u'on': False, u'reachable': False, u'mode': u'homeautomation', u'bri': 254, u'alert': u'none'}, u'manufacturername': u'Philips', u'config': {u'function': u'functional', u'startup': {u'configured': True, u'mode': u'powerfail'}, u'direction': u'omnidirectional', u'archetype': u'classicbulb'}, u'type': u'Dimmable light', u'modelid': u'LWB006'}, u'5': {u'swversion': u'1.46.13_r26312', u'name': u'Hall Table Lamp', u'swupdate': {u'state': u'noupdates', u'lastinstall': u'2018-12-06T00:37:19'}, u'productid': u'Philips-LCT010-1-A19ECLv4', u'uniqueid': u'00:17:88:01:02:73:5c:90-0b', u'capabilities': {u'control': {u'ct': {u'max': 500, u'min': 153}, u'colorgamut': [[0.6915, 0.3083], [0.17, 0.7], [0.1532, 0.0475]], u'mindimlevel': 1000, u'maxlumen': 806, u'colorgamuttype': u'C'}, u'streaming': {u'renderer': True, u'proxy': True}, u'certified': True}, u'productname': u'Hue color lamp', u'state': {u'on': False, u'hue': 8127, u'colormode': u'hs', u'effect': u'none', u'alert': u'none', u'xy': [0.4784, 0.4144], u'reachable': True, u'mode': u'homeautomation', u'bri': 1, u'ct': 399, u'sat': 171}, u'manufacturername': u'Philips', u'swconfigid': u'0CE67A8F', u'config': {u'function': u'mixed', u'startup': {u'configured': True, u'mode': u'powerfail'}, u'direction': u'omnidirectional', u'archetype': u'sultanbulb'}, u'type': u'Extended color light', u'modelid': u'LCT010'}, u'4': {u'swversion': u'5.127.1.26420', u'name': u'Hall Coat Cupboard Light', u'swupdate': {u'state': u'noupdates', u'lastinstall': u'2018-12-15T00:49:15'}, u'uniqueid': u'00:17:88:01:10:4c:53:d4-0b', u'capabilities': {u'control': {u'mindimlevel': 2000, u'maxlumen': 800}, u'streaming': {u'renderer': False, u'proxy': False}, u'certified': True}, u'productname': u'Hue white lamp', u'state': {u'on': False, u'reachable': True, u'mode': u'homeautomation', u'bri': 1, u'alert': u'none'}, u'manufacturername': u'Philips', u'config': {u'function': u'functional', u'startup': {u'configured': True, u'mode': u'powerfail'}, u'direction': u'omnidirectional', u'archetype': u'classicbulb'}, u'type': u'Dimmable light', u'modelid': u'LWB006'}}
2

CliveS

Indigo 2023.2.0 : macOS Ventura 13.6.3 : Mac Mini M2 : 8‑core CPU and 10‑core GPU : 8 GB : 256GB SSD
----------------------------------------------------------------------------------
The best way to get the right answer on the Internet is not to ask a question, it's to post the wrong answer

Posted on
Tue Dec 03, 2019 1:09 pm
nsheldon offline
Posts: 2469
Joined: Aug 09, 2010
Location: CA

Re: Hue Lights discussion

@Mirko: Thanks for the report. Your workaround is the one I'd recommend while waiting for the plugin to be updated. The problem is that the Hue Lights plugin doesn't recognize the model of light you've added. I need to add support for that light, but in order to do that, I need to know the modelID and what type of light it is. You can find this out in the Hue app on your iPhone. Open the Hue app. Go to the Settings icon at the bottom. Go to Light setup. Find the light that isn't appearing in the Hue Lights plugin and touch it. In your reply, tell me what it says for the type of light (e.g. "Hue white lamp" or "Hue color lamp", etc.) and the Model exactly as it appears in the app (including capitalization). With that info I can add support for that light into the Hue Lights plugin.

@CliveS: Great! Thanks for all the details! I'll add support for those lights in the next patch release (should be in a few days).

Posted on
Wed Dec 04, 2019 3:05 am
MarcoGT offline
Posts: 1091
Joined: Sep 11, 2014
Location: Germany

Re: Hue Lights discussion

nsheldon wrote:
Version 1.7.19 Posted

  • Added support for the Hue GU10 version 2 bulb.
  • Added support for an IKEA dimmable 600 lumen E14 color bulb.



It works!

Thanks a lot!

Page 75 of 103 1 ... 72, 73, 74, 75, 76, 77, 78 ... 103

Who is online

Users browsing this forum: No registered users and 1 guest