node-motor-shield
v1.3.2
Published
Node implementation of SBC Shop's Motor Shield library
Downloads
9
Readme
Node Motor Shield
Node-based implementation of SBCShop's Python MotorShield library.
Implementation Status
Class
Motor
:heavy_check_mark:Class
LinkedMotors
:heavy_check_mark:Class
Stepper
:heavy_check_mark:Class
Sensor
:x:Class
Arrow
:heavy_check_mark:Test_Motor :heavy_check_mark:
Stepper_Test :heavy_check_mark:
GUI_Motor_Shield :x: not currently planned
Installation
npm install --save node-motor-shield
Alternatively, download the package and include PiMotor.js
in your project's directory.
Usage
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.
Differences and Notes
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 Classes
- All class methods return
this
so they can be chained.
- All class methods return
Class
Motor
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.
Class
LinkedMotors
- As in the
Motor
class,forward()
andreverse()
may be called without the speed argument, which will default the speed to100
.
- As in the
Motor Test
- ~~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
Class
Stepper
- NOTE: Delay times are in full seconds to align with the original library's API.
Stepper Test
- ~~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.