RaspberryPi Zero W with node-rpio

Ring oscillator with node-rpio.

This ring oscillator uses the node rpio from Jonathan Perkin. The code is available here, or visible below.


var rpio = require('rpio');
rpio.open(3, rpio.OUTPUT);
rpio.open(5, rpio.INPUT);
while(1){rpio.write(3, 1-rpio.read(5) ); }

Note: This test was run on a RPiZero W, instead of the baseline version (without wifi).

Back