Johnny-Five

JavaScript Robotics and IoT programming framework, developed at Bocoup.

README

undefined

Johnny-Five

The JavaScript Robotics Programming Framework


<!--

    Hello!

    Please don't edit this file!

    If you'd like to make changes to the readme contents, please make them in the tpl/.readme.md file. If you'd like to add an example:

    1. Add the file in eg/
    2. Add a breadboard image in docs/breadboards
    3. Add an entry to tpl/programs.json.
    4. Generated the markdown with: grunt examples







































-->


_Artwork by Mike Sgier_
Travis Build Status Appveyor Build Status Coverage Status Install Size Gitter



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



Why JavaScript?

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.

  1. ``` js
  2. const { Board, Led } = require("johnny-five");
  3. const board = new Board();

  4. board.on("ready", () => {
  5.   // Create an Led on pin 13
  6.   const led = new Led(13);
  7.   // Blink every half second
  8.   led.blink(500);
  9. });
  10. ```


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:


  1. ``` bash
  2. git clone git://github.com/rwaldron/johnny-five.git && cd johnny-five

  3. npm install
  4. ```

npm package:


Install the module with:

  1. ``` sh
  2. npm install johnny-five
  3. ```


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

- Pin

LED

- LED

LED: RGB


LED: Digits & Matrix


Servo


GPS


Servo Animation


Color


Motor


Stepper Motor


ESC & Brushless Motor


Button / Switch


Keypad


Relay


Shift Register


Infrared Reflectance


Proximity


Motion


Joystick


LCD

- LCD

Compass/Magnetometer


Piezo


IMU/Multi


Sensors


Expander


Photon Weather Shield


Lego EVShield


Intel Edison + Grove IoT Kit


Grove IoT Kit (Seeed Studio)


Micro Magician V2


TinkerKit


Wii


Complete Bots / Projects

- Bug

Component Plugin Template


IO Plugins



Many fragments. Some large, some small.





Make: JavaScript Robotics

undefined




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
Licensed under the MIT license.
Copyright (c) 2014, 2015 The Johnny-Five Contributors
Licensed under the MIT license.