Skip to content

node-red-contrib-ola lets you control DMX devices via OpenLighting with Node-Red

License

Notifications You must be signed in to change notification settings

netjordan/node-red-contrib-ola

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

node-red-contrib-ola

node-red-contrib-ola lets you control DMX devices via OpenLighting. You can change straight to a value, or fade to the specified values.

Install

Run the following command in the root directory of your Node-RED install. Usually this is ~/.node-red

npm install node-red-contrib-ola

Using

You can either set a single channel like the following example:

msg.payload={
    "channel": 1,
    "value": 255
}

return msg;

Or you can set multiple channels at once:

msg.payload={
    "channels": [
        {
          "channel": 1,
          "value": 255
        },
        {
          "channel": 2,
          "value": 255
        },
        {
          "channel": 3,
          "value": 255
        }
      ]
}

return msg;

You can also fade to values, either for a single channel or multiple channels. You must specify the 'transition' and also a 'time' in milliseconds:

msg.payload={
    "transition": "fade",
    "time": 5000,
    "channels": [
        {
          "channel": 1,
          "value": 255
        },
        {
          "channel": 2,
          "value": 255
        },
        {
          "channel": 3,
          "value": 255
        }
      ]
}

return msg;

About

node-red-contrib-ola lets you control DMX devices via OpenLighting with Node-Red

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published