8000 GitHub - josephdadams/USBRelay: Control USB HID Relays using Node JS.
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

josephdadams/USBRelay

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

26 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

USB Relay

Control simple USB HID Relays using Node JS like this one:

picture alt

To install

npm i @josephdadams/usbrelay

To use:

const USBRelay = require("@josephdadams/usbrelay");
const relay = new USBRelay(); //gets the first connected relay

To use a specific relay, specify a HID path:

const relay = new USBRelay(path);

Get connected relays:

USBRelay.Relays; //returns an array with HID data including paths

Set relay state:

relay.setState(1, true); // turns Relay 1 of the device on
relay.setState(1, false); // turns Relay 1 of the device off

Relay numbers are NOT zero-based, so if you want to refer to Relay #1, use 1.

To turn all relays off:

relay.setState(0, false); // relay number 0 references all relays of the device

To turn a relay on, wait 1 second, and then turn off:

relay.setState(1, true);

setTimeout(function () {
    relay.setState(1, false);
}, 1000);

About

Control USB HID Relays using Node JS.

Resources

License

Stars

Watchers

Forks

Sponsor this project

 

Packages

No packages published

Contributors 4

  •  
  •  
  •  
  •  
0