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

monster-drift

v0.8.2

Published

Drive a radio controlled car with Node.js and HackRF

Downloads

81

Readme

monster-drift

📻🏎 Drive a radio controlled car with Node.js and HackRF. This module should work with most radio controlled cars operating on a frequency of 27MHz.

Build status js-standard-style

180 turn

Contributions

Contributions are welcome! Add your own tricks and manoeuvres and make a Pull Request 🤕🙈✌️

Installation

Use from the command line:

npm install monster-drift --global

Use programmatically:

npm install monster-drift --save

CLI Usage

Simply run the monster-drift command to start. Use --help to get help.

Programmatic Usage

Drive forward for one seconds and stop:

var drive = require('monster-drift')()

drive.forward()

setTimeout(function () {
  drive.stop()
}, 1000)

API

Some cars might not support all commands.

var drive = new MonsterDrift([options])

This module exposes a MonsterDrift object that you can initiate to get a drive object.

Options:

  • channel - The channel to transmit on in the 27 MHz band (default: 19)
  • freq - The frequency in Hz to transmit on (overwrites channel)
  • speed - The default forward speed. Must be between 1 and 3 (default: 1). Can be overwritten with drive.forward(speed) (experimental)
  • swaplr - Boolean for inverting left and right (default: false)
  • stop - Milliseconds in which to automatically stop the card if no drive commands have been issued (default: never)
  • id - The HackRF device id to use (default: 0)
  • gain - The HackRF TX gain (0-47 dB in 1 dB steps, default: 47)
  • sampleRate - The sample rate used when transmitting (default: 10e6)

drive.forward([speed])

Drive forward.

An optional speed can be given between 1 and 3. The default speed is 1. Note that not all cars support all speeds.

drive.reverse()

Drive reverse.

drive.left()

Turn wheels left.

drive.right()

Turn wheels right.

drive.forwardRight()

Drive forward while turning right.

drive.forwardLeft()

Drive forward while turning left.

drive.reverseRight()

Drive reverse while turning right.

drive.reverseLeft()

Drive reverse while turning left.

drive.stop([callback])

Stop the car and turn off transmitter. Calls optional callback when done.

drive.close([callback])

Stop the car, turn off transmitter and close the HackRF USB connection. Calls optional callback when done.

drive.turn180([callback])

Make a 180. Calls callback when done.

drive.batch(commands[, callback])

Issue a series of driving commands to the car and call optional callback when done.

The commands argument is an array of commands. Each command is a double tuple with the following format: [function, duration]. The function part is a drive function, e.g. drive.forward, and the duration part is the number of milliseconds to perform the operation.

If the last tuple contains a duration then drive.stop will be called automatically. Leave out duratuon to continue forever.

// make a 180
drive.batch([
  [drive.forward, 1000],
  [drive.right, 125],
  [drive.reverseLeft, 100],
  [drive.reverse]
])

License

MIT