Raspberry Pi GPIO via Deno
Does anyone have experience with controlling Rasperry Pi GPIO via Deno?
2 Replies
Hi, I've managed to interact with the GPIO from Deno using the commands
gpioget and gpiomon (based on the "new" libgpiod library).
You can also write to a GPIO pin using the gpioset command, I didn't have the need for it.
In the gpio.ts file you can find the code that I've used to read and monitor GPIO pinsThank you very much. I will try it out tonight.