mirror of
https://github.com/chirimen-oh/node-web-gpio.git
synced 2025-01-18 16:08:00 +00:00
438 B
438 B
@notweb/gpio
GPIO access with Node.js
Usage
const { requestGPIOAccess } = require("@notweb/gpio");
async function main() {
const gpioAccess = await requestGPIOAccess();
const port = gpioAccess.ports.get(26);
await port.export("out");
for (;;) {
port.write(value);
await new Promise(resolve => setTimeout(resolve, 1e3));
}
}
main();