Javascript package to control the Seeed-Studio-Relay-Board.
npm install js-seeed-studio-relay-boardThis is a node.js package that can control and get state of the Seeed Studio Raspberry Pi Relay Board v.1.0.
Inspired by the Python library for the Seeed Studio Relay Board.
Install :
```
npm install js-seeed-studio-relay-board
js
const SeeedStudioRelayBoard = require('js-seeed-studio-relay-board')async function main() {
const rpi = new SeeedStudioRelayBoard.Relay()
// Initialize I2C controler
await rpi.init()
/**
* Examples
**/
// Turn relay 3 ON.
await rpi.on(3)
// Get status of relay 3.
await rpi.get(3)
// Get status of all relays.
await rpi.getAll()
// Turn relay OFF.
await rpi.off(3)
// Turn all relays OFF.
await rpi.allOff()
}
``