1.3.2 • Published 5 years ago

node-motor-shield v1.3.2

Weekly downloads
3
License
ISC
Repository
github
Last release
5 years ago

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.
  • Class Motor

    • forward() and reverse() may be called without a speed argument, which will cause the speed to default to 100.
    • test() may be called without an argument, which acts as a toggle to the testmode state.
  • Class LinkedMotors

    • As in the Motor class, forward() and reverse() may be called without the speed argument, which will default the speed to 100.
  • 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.
1.3.2

5 years ago

1.3.1

5 years ago

1.2.4

5 years ago

1.2.3

5 years ago

1.2.2

5 years ago

1.2.1

5 years ago

1.2.0

5 years ago

1.1.0

5 years ago

1.0.2

5 years ago

1.0.1

5 years ago