Skip to content

Setting multiple DPS values #33

@christopherpm

Description

@christopherpm

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

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions