Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

tint remote (ZBT-Remote) Color keys #284

Merged
merged 13 commits into from
Feb 19, 2019
Prev Previous commit
Next Next commit
Update fromZigbee.js
  • Loading branch information
Koenkk authored Feb 19, 2019
commit ef9640b0fb3ddabbbe9e9799570516d8e8f5cbda
6 changes: 3 additions & 3 deletions converters/fromZigbee.js
Original file line number Diff line number Diff line change
Expand Up @@ -1599,7 +1599,7 @@ const converters = {
convert: (model, msg, publish, options) => {
return {
action: `color_temp`,
color_temperature: msg.data.data.colortemp,
action_color_temperature: msg.data.data.colortemp,
transition_time: msg.data.data.transtime,
};
},
Expand All @@ -1610,8 +1610,8 @@ const converters = {
convert: (model, msg, publish, options) => {
return {
action: `color_wheel`,
color_x: msg.data.data.colorx,
color_y: msg.data.data.colory,
action_color_x: msg.data.data.colorx,
action_color_y: msg.data.data.colory,
transition_time: msg.data.data.transtime,
};
},
Expand Down