10.1.10.99:4000
Outputs
A physical switch we can control through code
Microcontroller
Like frameworks
Like our libraries/modules/packages for hardware
But first, why JavaScript?
Rick Waldron, author of Johnny-Five
Also...
Lots of different libraries
Browser as an input and output
$("livingroom").bind("motion", function() {
$(this).find("lights").brightness("75%").dimAfter("120s");
});
Inputs
Endless possibilities!
var five = require("johnny-five"),
board, led;
board = new five.Board();
board.on("ready", function() {
// Create a standard `led` hardware instance
led = new five.Led({
pin: 12
});
// "strobe" strobes the light
led.strobe();
});
See also docs for johnny-five LED strobe
Chasis, servos, and power
This list can also be found here.
Stay in touch with HoustonJS for community events.