Philips Hue, don't send XY colors when in CT mode

This commit is contained in:
Stephan Hadinger 2019-04-25 20:55:22 +02:00
parent 4efef18d5d
commit 6b1efb9abc
1 changed files with 5 additions and 3 deletions

View File

@ -631,11 +631,13 @@ void HueLightStatus1(uint8_t device, String *response)
light_status += "\"colormode\":\"" + String(g_gotct ? "ct" : "hs") + "\","; light_status += "\"colormode\":\"" + String(g_gotct ? "ct" : "hs") + "\",";
} }
if (LST_RGB <= light_subtype) { // colors if (LST_RGB <= light_subtype) { // colors
float x, y;
light_state.getXY(&x, &y);
light_status += "\"xy\":[" + String(x) + ", " + String(y) + "],";
light_status += "\"hue\":" + String(hue) + ","; light_status += "\"hue\":" + String(hue) + ",";
light_status += "\"sat\":" + String(sat) + ","; light_status += "\"sat\":" + String(sat) + ",";
if (!g_gotct) {
float x, y;
light_state.getXY(&x, &y);
light_status += "\"xy\":[" + String(x, 5) + "," + String(y, 5) + "],";
}
} }
if (LST_COLDWARM == light_subtype || LST_RGBW <= light_subtype) { // white temp if (LST_COLDWARM == light_subtype || LST_RGBW <= light_subtype) { // white temp
light_status += "\"ct\":" + String(ct > 0 ? ct : 284) + ","; // if no ct, default to medium white light_status += "\"ct\":" + String(ct > 0 ? ct : 284) + ","; // if no ct, default to medium white