Created by Jenny Tong / mimming.com / @BaconatedGeek
I'm a Developer Advocate at
I like to help people cause trouble with code.
What is this play stuff?
Play loves technology too
A demo: robots fight
Jenny speculates
An overloaded marketing buzzword
var five = require("raspi-io"); var Firebase = require("firebase"); var board = new five.Board(); var firebase = new Firebase("https://robots.firebaseio.com/robots"); board.on("ready", function() { var red = new five.Button(24); var blue = new five.Button(26); red.on("up", function () { firebase.child("red").once("value", function(snap) { firebase.child("red").set(snap.val() + 1); }); ... });
var firebase = new Firebase("https://robots.firebaseio.com/"); firebase.child("robots/red").on("value", function(snap) { $("#robot-score-red").text(snap.val()); }); firebase.child("robots/blue").on("value", function(snap) { $("#robot-score-blue").text(snap.val()); }); $("#robot-score-reset").click(function() { firebase.child("robots/blue").set(0); firebase.child("robots/red").set(0); });
Internet of Rock'em Sock'em Robots, so what?
https://mimming.com/presos/how-iot-will-change-the-way-we-play
https://github.com/mimming/how-iot-will-change-the-way-we-play
Created by Jenny Tong / mimming.com / @BaconatedGeek