@code-dot-org/johnny-five
v2.1.0-cdo.3
Published
Code.org fork of rwaldron/johnny-five: The JavaScript Robotics and Hardware Programming Framework. Use with: Arduino (all models), Electric Imp, Beagle Bone, Intel Galileo & Edison, Linino One, Pinoccio, pcDuino3, Raspberry Pi, Particle/Spark Core & Photo
Downloads
3,203
Maintainers
Keywords
Readme
Johnny-Five
The JavaScript Robotics Programming Framework
Artwork by Mike Sgier
This is the Code.org fork of johnny-five. Please check out the main project here!
This project was forked in 2017 to provide better support for the Adafruit Circuit Playground which is used in the Code.org curriculum. The project was updated to the latest release of its upstream in September 2022, and Code.org customizations were then re-implemented.
Source Code:
git clone https://github.com/code-dot-org/johnny-five
cd johnny-five
npm install
Building and testing with apps
This is the most typical use case for @code-dot-org/johnny-five fork development.
Apps (aka Code Studio) is a set of apps which installs and references this package. You can run the dashboard locally from the apps directory using bin/dashboard-server
(setup reference)
You can use yarn add
for local development and testing.
cd {code-dot-org repo directory}/apps
yarn add <file-path-to-local-folder>
When you are finished testing locally, you can run yarn @code-dot-org/johnny-five
to install the npm package instead of the local package.
Note that a copy of the local johnny-five package was added to your node_modules directory so that changes in @code-dot-org/johnny-five are not automatically transferred to @code-dot-org/code-dot-org/apps/node_modules. Thus, you must run yarn add <file-path-to-local-folder>
again after any changes in the local johnny-five package.
In addition, there are changes to your package.json and yarn.lock locally that you do not want to commit.
Testing
You can lint and test your code (unit tests included in test/
) using the grunt
command. Remember to add or update unit tests for any new or changed functionality.
There are additional tests in Apps within apps/test/unit/lib/kits/boards/circuitPlayground and apps/test/unit/lib/kits/boards that you can run locally to test any new updates within johnny-five. Refer to testing.md.
Updating README
If you'd like to make changes to the readme contents, please make them in the tpl/.readme.md file. Then generated the markdown with: grunt examples
.
Johnny-Five is an Open Source, Firmata Protocol based, IoT and Robotics programming framework, developed by the Nodebots Community. Johnny-Five programs can be written for Arduino (all models), Electric Imp, Beagle Bone, Intel Galileo & Edison, Linino One, Pinoccio, pcDuino3, Raspberry Pi, Particle/Spark Core & Photon, Tessel 2, TI Launchpad and more!
Johnny-Five has grown from a passion project into a tool for inspiring learning and creativity for people of all ages, backgrounds, and from all across the world.
Just interested in learning and building awesome things? You might want to start with the official Johnny-Five website.
- If you want to find the API documentation, that’s right here.
- Need to figure out what platform to use for a project? We put that stuff here.
- Need inspiration for your next NodeBot? Check out the examples.
- Want to stay up-to-date with projects in the community? Check this out.
- Need NodeBots community or Johnny-Five project updates and announcements? This is what you’re looking for.
Johnny-Five does not attempt to provide "all the things", but instead focuses on delivering robust, reality tested, highly composable APIs that behave consistently across all supported hardware platforms. Johnny-Five wants to be a baseline control kit for hardware projects, allowing you the freedom to build, grow and experiment with diverse JavaScript libraries of your own choice. Johnny-Five couples comfortably with:
- Popular application libraries such as Express.js and Socket.io.
- Fellow hardware projects like ar-drone, Aerogel and Spheron
- Bluetooth game controllers like XBox Controller and DualShock
- IoT frameworks, such as Octoblu
...And that's only a few of the many explorable possibilities. Check out these exciting projects: node-pulsesensor, footballbot-workshop-ui, nodebotui, dublin-disco, node-slot-car-bot, servo-calibrator, node-ardx, nodebot-workshop, phone-home, purple-unicorn, webduino, leapduino, lasercat-workshop, simplesense, five-redbot, robotnik, the-blender
Why JavaScript? NodeBots: The Rise of JavaScript Robotics
Hello Johnny
The ubiquitous "Hello World" program of the microcontroller and SoC world is "blink an LED". The following code demonstrates how this is done using the Johnny-Five framework.
const { Board, Led } = require("johnny-five");
const board = new Board();
board.on("ready", () => {
// Create an Led on pin 13
const led = new Led(13);
// Blink every half second
led.blink(500);
});
Note: Node will crash if you try to run johnny-five in the node REPL, but board instances will create their own contextual REPL. Put your script in a file.
Supported Hardware
Johnny-Five has been tested on a variety of Arduino-compatible Boards.
For non-Arduino based projects, a number of platform-specific IO Plugins are available. IO Plugins allow Johnny-Five code to communicate with any non-Arduino based hardware in whatever language that platforms speaks!
Documentation
Documentation for the Johnny-Five API can be found here and example programs here.
Guidance
Need help? Ask a question on the NodeBots Community Forum. If you just have a quick question or are interested in ongoing design discussions, join us in the Johnny-Five Gitter Chat.
For step-by-step examples, including an electronics primer, check out Arduino Experimenter's Guide for NodeJS by @AnnaGerber
Here is a list of prerequisites for Linux, OSX or Windows.
Check out the bluetooth guide if you want to remotely control your robot.
Setup and Assemble Arduino
- Recommended Starting Kit: Sparkfun Inventor's Kit
- Download Arduino IDE
- Plug in your Arduino or Arduino compatible microcontroller via USB
- Open the Arduino IDE, select: File > Examples > Firmata > StandardFirmataPlus
- StandardFirmataPlus is available in Firmata v2.5.0 or greater
- Click the "Upload" button.
If the upload was successful, the board is now prepared and you can close the Arduino IDE.
For non-Arduino projects, each IO Plugin's repo will provide its own platform specific setup instructions.
Hey you, here's Johnny!
Source Code:
git clone git://github.com/rwaldron/johnny-five.git && cd johnny-five
npm install
npm package:
Install the module with:
npm install johnny-five
Example Programs
To get you up and running quickly, we provide a variety of examples for using each Johnny-Five component. One thing we’re especially excited about is the extensive collection of Fritzing diagrams you’ll find throughout the site. A huge part of doing any Johnny-Five project is handling the actual hardware, and we’ve included these as part of the documentation because we realised that instructions on how to write code to control a servo are insufficient without instructions on how to connect a servo!
To interactively navigate the examples, visit the Johnny-Five examples page on the official website. If you want to link directly to the examples in this repo, you can use one of the following links.
There are presently 362 example programs with code and diagrams!
Board
- Board - Basic Initialization
- Board - Cleanup in 'exit' event
- Board - Multiple in one program
- Board - Specify Sampling Interval
- Board - Specify port
- Custom Data Properties
- Pin
- REPL
LED
- LED
- LED - Blink
- LED - Demo sequence
- LED - Fade
- LED - Fade callback
- LED - Fade with animation
- LED - PCA9685
- LED - Pulse
- LED - Pulse with animation
- LED - Slider
- LED - Tessel Servo Module
- LEDs - An array of LEDs
- LEDs - Controlling an array of LEDs
LED: RGB
- LED - RGB (Common Anode)
- LED - RGB (Common Anode) PCA9685
- LED - RGB Intensity
- LED - Rainbow
- LED - Rainbow BlinkM
LED: Digits & Matrix
- LED - Digital Clock
- LED - Digital Clock, Dual Displays
- LED - Digital Clock, HT16K33
- LED - Draw Matrix Characters Demo
- LED - Enumerate Matrix Characters & Symbols
- LED - Matrix
- LED - Matrix Demo
- LED - Matrix HT16K33
- LED - Matrix HT16K33 16x8
Servo
- Servo
- Servo - Continuous
- Servo - Drive
- Servo - Multi-Turn
- Servo - PCA9685
- Servo - Prompt
- Servo - Slider control
- Servo - Tessel Servo Module
- Servos - An array of servos
GPS
Servo Animation
Color
Motor
- Motor
- Motor - 3 pin
- Motor - Adafruit DRV8871 DC Motor Driver Breakout
- Motor - Brake
- Motor - Current
- Motor - Directional
- Motor - EVShield EV3
- Motor - EVShield NXT
- Motor - Enable Pin
- Motor - GROVE_I2C_MOTOR_DRIVER
- Motor - H-Bridge
- Motor - LUDUS
- Motor - PCA9685
- Motor - Pololu VNH5019 Dual Motor Driver Breakout
- Motor - Sparkfun Dual H-bridge Edison Block
- Motor - Sparkfun TB6612FNG
- Motor - l298 Breakout
- Motors - Dual H-Bridge
Stepper Motor
ESC & Brushless Motor
Button / Switch
- Button
- Button - Bumper
- Button - EVShield EV3
- Button - EVShield NXT
- Button - Options
- Button - Pullup
- Buttons - Collection w/ AT42QT1070
- Switch
- Switch - Magnetic Door
- Switch - Tilt SW-200D
- Toggle Switch
Keypad
- Keypad - 3x4 I2C Nano Backpack
- Keypad - 4x4 I2C Nano Backpack
- Keypad - VKEY
- Keypad - Waveshare AD
- Touchpad - Grove QTouch
- Touchpad - MPR121
- Touchpad - MPR121, Sensitivity
- Touchpad - MPR121QR2_SHIELD
- Touchpad - MPR121_KEYPAD
- Touchpad - MPR121_SHIELD
Relay
Shift Register
- Shift Register
- Shift Register - Common Anode Seven Segment controller
- Shift Register - Common Anode Seven segments, Chained
- Shift Register - Seven Segment controller
- Shift Register - Seven segments, Chained
Infrared Reflectance
Proximity
- Proximity
- Proximity - EVShield EV3 (IR)
- Proximity - EVShield EV3 (IR)
- Proximity - EVShield EV3 (Ultrasonic)
- Proximity - EVShield EV3 (Ultrasonic)
- Proximity - GP2Y0A710K0F
- Proximity - HC-SR04
- Proximity - HC-SR04 (Analog)
- Proximity - HC-SR04 I2C Backpack
- Proximity - LIDAR-Lite
- Proximity - MB1000
- Proximity - MB1003
- Proximity - MB1010
- Proximity - MB1230
- Proximity - SRF10
Motion
Joystick
LCD
- Grove - RGB LCD Color Previewer
- LCD
- LCD - Enumerate characters
- LCD - I2C
- LCD - I2C PCF8574
- LCD - I2C Runner
- LCD - Runner 16x2
- LCD - Runner 20x4
- LCD - Tessel 2 16x2
- Tessel 2 + Grove - RGB LCD Color Previewer
- Tessel 2 + Grove - RGB LCD Display
Compass/Magnetometer
- Compass - Find north
- Compass - HMC5883L
- Compass - HMC6352
- Compass - Logger
- Compass - MAG3110
- Compass - MAG3110 on Tessel 2
- Compass / Magnetometer
Piezo
IMU/Multi
- IMU - BNO055
- IMU - BNO055 (Orientation)
- IMU - LSM303C
- IMU - MPU6050
- Multi - BME280
- Multi - BMP085
- Multi - BMP180
- Multi - DHT11_I2C_NANO_BACKPACK
- Multi - DHT21_I2C_NANO_BACKPACK
- Multi - DHT22_I2C_NANO_BACKPACK
- Multi - HIH6130
- Multi - HTU21D
- Multi - MPL115A2
- Multi - MPL3115A2
- Multi - MS5611
- Multi - SHT31D
- Multi - SI7020
- Multi - SI7021
- Multi - TH02
Sensors
- Accelerometer
- Accelerometer - ADXL335
- Accelerometer - ADXL345
- Accelerometer - LIS3DH
- Accelerometer - MMA7361
- Accelerometer - MMA8452
- Accelerometer - MPU6050
- Accelerometer - Pan + Tilt
- Altimeter - BMP085
- Altimeter - BMP180
- Altimeter - MPL3115A2
- Altimeter - MS5611
- Barometer - BMP085
- Barometer - BMP180
- Barometer - MPL115A2
- Barometer - MPL3115A2
- Barometer - MS5611
- Gyro
- Gyro - Analog LPR5150AL
- Gyro - I2C MPU6050
- Hygrometer - DHT11_I2C_NANO_BACKPACK
- Hygrometer - DHT21_I2C_NANO_BACKPACK
- Hygrometer - DHT22_I2C_NANO_BACKPACK
- Hygrometer - HIH6130
- Hygrometer - HTU21D
- Hygrometer - SHT31D
- Hygrometer - SI7021
- Hygrometer - TH02
- Sensor
- Sensor - Digital Microwave
- Sensor - Flex sensor
- Sensor - Force sensitive resistor
- Sensor - Microphone
- Sensor - Photoresistor
- Sensor - Potentiometer
- Sensor - Slide potentiometer
- Thermometer - BMP085
- Thermometer - BMP180
- Thermometer - DHT11_I2C_NANO_BACKPACK
- Thermometer - DHT21_I2C_NANO_BACKPACK
- Thermometer - DHT22_I2C_NANO_BACKPACK
- Thermometer - DS18B20
- Thermometer - Dual DS18B20
- Thermometer - HIH6130
- Thermometer - HTU21D
- Thermometer - LM335
- Thermometer - LM35
- Thermometer - MAX31850
- Thermometer - MCP9808
- Thermometer - MPL115A2
- Thermometer - MPL3115A2
- Thermometer - MPU6050
- Thermometer - MS5611
- Thermometer - SHT31D
- Thermometer - SI7020
- Thermometer - SI7021
- Thermometer - TH02
- Thermometer - TMP102
- Thermometer - TMP36
Expander
- Expander - 74HC595
- Expander - CD74HC4067, 16 Channel Analog Input Breakout
- Expander - LIS3DH
- Expander - MCP23008
- Expander - MCP23017
- Expander - MUXSHIELD2, Analog Sensors
- Expander - MUXSHIELD2, Digital Input and Output
- Expander - PCA9685
- Expander - PCF8574
- Expander - PCF8575
- Expander - PCF8591
Photon Weather Shield
Lego EVShield
- Button - EVShield EV3
- Button - EVShield NXT
- Color - EVShield EV3 (Code)
- Color - EVShield EV3 (Raw)
- Color - EVShield NXT (Code)
- Light - BH1750
- Light - EVShield EV3 (Ambient)
- Light - EVShield EV3 (Reflected)
- Light - EVShield NXT (Ambient)
- Light - EVShield NXT (Reflected)
- Light - TSL2561
- Motor - EVShield EV3
- Motor - EVShield NXT
- Proximity - EVShield EV3 (IR)
- Proximity - EVShield EV3 (Ultrasonic)
Intel Edison + Grove IoT Kit
- Intel Edison + Grove - Accelerometer (ADXL345)
- Intel Edison + Grove - Accelerometer (MMA7660)
- Intel Edison + Grove - Air quality sensor
- Intel Edison + Grove - Barometer (BMP180)
- Intel Edison + Grove - Button
- Intel Edison + Grove - Compass (HMC588L)
- Intel Edison + Grove - Flame Sensor
- Intel Edison + Grove - Gas (MQ2)
- Intel Edison + Grove - Humidity & Temperature (TH02)
- Intel Edison + Grove - I2C Motor Driver
- Intel Edison + Grove - Joystick
- Intel Edison + Grove - LED
- Intel Edison + Grove - Light Sensor (TSL2561)
- Intel Edison + Grove - Moisture Sensor
- Intel Edison + Grove - Q Touch
- Intel Edison + Grove - RGB LCD
- Intel Edison + Grove - RGB LCD Color Previewer
- Intel Edison + Grove - RGB LCD temperature display
- Intel Edison + Grove - Relay
- Intel Edison + Grove - Rotary Potentiometer
- Intel Edison + Grove - Servo
- Intel Edison + Grove - Touch
Grove IoT Kit (Seeed Studio)
- Grove - Button
- Grove - Joystick
- Grove - LED
- Grove - Motor (I2C Driver)
- Grove - RGB LCD
- Grove - RGB LCD temperature display
- Grove - Rotary Potentiometer
- Grove - Servo
- Grove - Touch
Micro Magician V2
TinkerKit
- TinkerKit - Accelerometer
- TinkerKit - Blink
- TinkerKit - Button
- TinkerKit - Combo
- TinkerKit - Continuous servo
- TinkerKit - Gyro
- TinkerKit - Joystick
- TinkerKit - Linear potentiometer
- TinkerKit - Rotary potentiometer
- TinkerKit - Temperature
- TinkerKit - Tilt
- TinkerKit - Touch
Wii
Complete Bots / Projects
- Bug
- Kinect Robotic Arm Controller
- Laser Trip Wire
- Line Follower
- Lynxmotion Biped BRAT
- Motobot
- Navigator
- Nodebot
- Phoenix Hexapod
- Radar
- Robotic Claw
- Whisker
Component Plugin Template
IO Plugins
- Led Blink on Electric Imp
- Led Blink on Intel Edison Arduino Board
- Led Blink on Intel Edison Mini Board
- Led Blink on Intel Galileo Gen 2
- Led Blink on Raspberry Pi
- Led Blink on Spark Core
- Led Blink on pcDuino3
Many fragments. Some large, some small.
Wireless Nodebot
Kinect Controlled Robot Arm
Biped Nodebot
LCD Running Man
Slider Controlled Panning Servo
Joystick Controlled Laser (pan/tilt) 1
Joystick Controlled Laser (pan/tilt) 2
Joystick Controlled Claw
Robot Claw
Joystick, Motor & Led
Build you own drone
Make: JavaScript Robotics
Contributing
All contributions must adhere to the Idiomatic.js Style Guide, by maintaining the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code using grunt.
License
Copyright (c) 2012, 2013, 2014 Rick Waldron [email protected] Licensed under the MIT license. Copyright (c) 2014, 2015 The Johnny-Five Contributors Licensed under the MIT license.