npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

pi-motor

v0.0.1

Published

A simple helper for L293 and compatible dual-half-bridge ICs for motor control using the GPIO pins of the Raspberry Pi.

Downloads

5

Readme

pi-motor

pi-motor is a simple node.js module to help control dual-half-bridge motor control ICs like the L293 and its variants using the Raspberry Pi's GPIO pins.

var Motor = require("pi-motor");

var m = new Motor(7, 11);
m.clockwise(function(err) {
	m.counterclockwise(function(err) {
		m.stop();
	});
});

About

The L293 and similar ICs are among the most common motor drivers for DC motors. If you are planning to pick up a toy RC car and break that apart to make your own hardware on top of it, or if you are building a robot from scratch and need a DC motor in it, chances are you will want to use one of these ICs. Some of the ICs in this family are L293/L293D (pdf) and SN754410 (pdf), available in several variations of packaging.

I've been using the L293D IC in my projects, wired up to the Raspberry Pi in the following fashion:

Note that I've provided the 3v3 output from the Pi to the Vcc1 of the IC, and not the 5v from the Pi. Supplying the 5v seemed to cause the IC to draw huge amounts of current, overheating the IC and preventing the Pi from booting up. I guess that's not such a good thing. The 3v3 output from the Pi worked just fine.

Also note that I've hardwired the enable pin to 3v3, rather than using a separate GPIO pin to set this flag. I've seen a lot of people do this, so I did it too. If I'm wrong, please let me know! This module allows you both modes of operation - having the enable pin hardwired, or specified using a GPIO pin. The latter is untested, though there's no reason it shouldn't work.

Pin configuration

Use the pin-configuration as described at pi-gpio. In effect, you should the physical pin numbers as you see on the Pi. That gives you the following pins to use: pins 7, 11, 12, 13, 15, 16, 18 and 22.

Installation

Follow the installation instructions at pi-gpio to get set up. Then simply

npm install pi-motor

That's it!

Usage

new Motor(pin1, pin2, [enable])

Create a new instance of a motor.

  • pin1 and pin2: The two control pins on the Raspberry Pi that are used as control pins for the motor driver IC. Note that these pins don't need to be explicitly exported before use - it's done internally. Required.
  • enable: (Optional) If you intend to drive the enable pin using a GPIO pin of the Pi (as opposed to hard-wiring it to a digital HIGH), you should provide the pin number here.

motor.clockwise([callback])

Aliased to .forward, .left and .start.

Rotates the motor in the clockwise direction. Pin1 is set to a digital HIGH, and pin2 is set to digital LOW. If the enable pin was specified, it's set to a digital HIGH. All these pins are first exported so that they are available for use.

  • callback: (Optional) Will be called when motor has started moving, ie, when the pin values have been set correctly. The callback might receive an error if something went wrong.

motor.anticlockwise([callback])

Aliased to .backward, .counterclockwise, .reverse, .back and .right.

Rotates the motor in the anti-clockwise direction. Pin1 is set to a digital LOW, and pin2 is set to a digital HIGH. If the enable pin was specified, it's set to a digital HIGH. All pins are exported first.

  • callback: (Optional) Will be called when the motor has started moving. Again, may receive an error as the first argument.

motor.stop([callback])

Aliased to straight and reset.

Stops the motor from rotating. Sets both pin1 and pin2 to digital low. If the enable pin was specified, it's set to a digital low as well. All these pins are then unexported so that they are available for use elsewhere.

  • callback: (Optional) Will be called when the motor has stopped moving.

Misc

  • To run tests: npm install && npm test where you've got the checkout.
  • This module was created, git push'ed and npm publish'ed all from the Raspberry Pi! The Pi rocks!
  • Built on top of the pi-gpio module. Check it out!

License

(The MIT License)

Copyright (c) 2012 Rakesh Pai [email protected]

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.