node-rpio icon indicating copy to clipboard operation
node-rpio copied to clipboard

Raspberry Pi GPIO library for node.js

Results 62 node-rpio issues
Sort by recently updated
recently updated
newest added

``` kernel: node: epoll_ctl support in io_uring is deprecated and will be removed in a future Linux kernel version.``` This completely freezes the raspberry Pi to the point that it...

Is soft PWM supported? Wiring Pi already has it: http://wiringpi.com/reference/software-pwm-library/

````js var rpio = require("rpio"); rpio.init({mapping: "physical"}); rpio.open(8, rpio.INPUT, rpio.LOW); rpio.open(12, rpio.OUTPUT, rpio.LOW); while (true) { if (rpio.read(8)) { rpio.write(12, rpio.HIGH); } else { rpio.write(12, rpio.LOW); } } ```` This...

How to set BCM2835_SPI_BIT_ORDER_MSBFIRST ?

Hope to support the orange pi5.

Bumps [json5](https://github.com/json5/json5) to 2.2.3 and updates ancestor dependency [tap](https://github.com/tapjs/node-tap). These dependencies need to be updated together. Updates `json5` from 0.5.1 to 2.2.3 Release notes Sourced from json5's releases. v2.2.3 Fix:...

dependencies

Bumps [qs](https://github.com/ljharb/qs) from 6.5.2 to 6.5.3. Changelog Sourced from qs's changelog. 6.5.3 [Fix] parse: ignore __proto__ keys (#428) [Fix] utils.merge: avoid a crash with a null target and a truthy...

dependencies

I am unable to figure out how to properly keep polling but when testing I noticed CTL-C does not exit. I have to kill the app. Anyway around this?

A PR of my aux_spi changes, as well as other PR's submitted over the last 3 years. Included are : Update nan to min 2.18.0 Update readme with confirmed working...

I've got a bit of a strange situation. At first I was using a single PWM channel which was working fine. ``` javascript rpio.init({gpiomem: false}); rpio.open(12, rpio.PWM) rpio.pwmSetClockDivider(8) rpio.pwmSetRange(12, 1000)...