This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Inspired from: | |
| // https://ben.akrin.com/driving-a-28byj-48-stepper-motor-uln2003-driver-with-a-raspberry-pi/ | |
| // https://gist.github.com/wolli2710/9ae48c9f39737896c1f6 | |
| const { Gpio } = require("onoff"); | |
| const in1ToGpio = 17; // IN1 | |
| const in2ToGpio = 18; // IN2 | |
| const in3ToGpio = 27; // IN3 | |
| const in4ToGpio = 22; // IN4 | |
| const timeout = 1; // milliseconds |