-
Notifications
You must be signed in to change notification settings - Fork 18
Open
Description
I'm trying to use node-red-contrib-tuya-local to turn on an RGBIC striplight and set some of it's values.
I have an inject with a payload message of on. The output of this inject goes to the input of a function, and the code for this function reads:-
if (msg.payload === "on")
msg.payload =
{
"set": true,
"dps": 20
}
return msg;
The output of this function then goes to the input of the tuya-local device.
The above does work to turn on the striplight.
How do I set more DPS values at the same time in the same payload, e.g. 20=true, 25="03e832020", 104=10 ?
I tried the following, but even formatting like this, the light doesn't even turn on:-
if (msg.payload === "on")
msg.payload =
{
dps:
{
"20": true,
"104": 11
}
};
return msg;
Metadata
Metadata
Assignees
Labels
No labels