Node-based implementation of SBCShop's Python MotorShield library.
-
Class
Motor
✔️ -
Class
LinkedMotors
✔️ -
Class
Stepper
✔️ -
Class
Sensor
❌ -
Class
Arrow
✔️ -
Test_Motor ✔️
-
Stepper_Test ✔️
-
GUI_Motor_Shield ❌ not currently planned
npm install --save node-motor-shield
Alternatively, download the package and include PiMotor.js
in your project's directory.
Include the library like so:
// From npm:
const PiMotor = require('node-motor-shield');
// From PiMotor.js:
const PiMotor = require('./PiMotor.js');
Instance the class you want and use it to control the motors.
const motor1 = new PiMotor.Motor('MOTOR1', 1);
motor1.forward(75); // Drives motor #1 forward at 75% speed.
Arguments are the same as the Python MotorShield library. See Test_Motor.js
and Stepper_Test.js
for more examples, and the MotorShield Python Docs for more information on how to use the library.
Effort has been made to ensure this repository behaves identically to the Python version. Differences between the libraries are designed to add minor functionality without sacrificing compatibility.
-
- All class methods return
this
so they can be chained.
- All class methods return
-
forward()
andreverse()
may be called without aspeed
argument, which will cause the speed to default to100
.test()
may be called without an argument, which acts as a toggle to thetestmode
state.
-
- As in the
Motor
class,forward()
andreverse()
may be called without the speed argument, which will default the speed to100
.
- As in the
-
For now, the test only runs once, until I can figure out how to make it loop continuously, which will depend on making it block the next iteration until the last one finishes. JS sucks at things like that.This has been fixed in version 1.3.0
-
- NOTE: Delay times are in full seconds to align with the original library's API.
-
As with Motor Test, only runs once.This has been fixed in version 1.3.0- Added a stop call to the function so the motor will stop running after the test.