Replicate Light Color from Current State in SmartThings?


#1

I like the ‘soft white’ color the Amazon Echo sets an RGBW bulb. However, I can’t seem to get WebCoRE to replicate the color. (I change the color of the bulb pretty frequently for alerts - I can’t get the light to go to that color.

Here’s the ‘current state’ from the SmartThings IDE:

Can someone show me how to set a bulb to that color within WebCoRE? I think I’m converting the hue value incorrectly.

Thanks in advance!

///////
Update
//////

For anyone looking to exactly replicate Amazon Alexa’s “soft white” color in WebCore

Set Bulb Color (HSL)
H - 0
S - 0
L - 100

AND

colorTemperature = 2703


#2

I run this piston to see what Hue, Saturation, and Levels are currently in use:


and then when I want to return to that precise color later, I use this code:

temp


Side Note:
If you try to push the RGB color or colorTemperature, it will often fail to recreate the exact color.
(using only Hue, Saturation, and Levels seems to work best for me)


#3

This is great! Thanks so much, this was exactly what I was after.