Skip to content

Latest commit

 

History

History
56 lines (30 loc) · 832 Bytes

color-raw-EVS_EV3.md

File metadata and controls

56 lines (30 loc) · 832 Bytes

Color - EVShield EV3 (Raw)

Run this example from the command line with:

node eg/color-raw-EVS_EV3.js
var five = require("johnny-five");
var board = new five.Board();

board.on("ready", function() {
  var color = new five.Color({
    controller: "EVS_EV3",
    mode: "RAW",
    pin: "BAS1"
  });

  color.on("change", function() {
    console.log("Color: ", this.rgb);
  });
});
<iframe width="560" height="315" src="https://www.youtube.com/embed/E2SD6MGpMUI" frameborder="0" allowfullscreen></iframe>

 

License

Copyright (c) 2012, 2013, 2014 Rick Waldron waldron.rick@gmail.com Licensed under the MIT license. Copyright (c) 2016 The Johnny-Five Contributors Licensed under the MIT license.