igdr / node-red-contrib-xiaomi-smart-devices

8 stars 4 forks source link

Need examples.flow #17

Closed andreypopov closed 5 years ago

andreypopov commented 5 years ago

How to play sound on gateway? Where is the list of commands

igdr commented 5 years ago

Here is my example: image

Change color:

let cmd = {
 "rgb": 440038609
}
msg.payload = cmd;
return msg;

Play some sound:

let cmd = {
 "mid": 1, 
 "vol": 27
}
msg.payload = cmd;
return msg;
igdr commented 5 years ago

Documentation for the gateway node has been updated in v2.0.4 with examples.

alexsahka commented 5 years ago

Could you provide a link to the Documentation?