Internet of things example
Julio César Rodríguez Domínguez
NodeBots entusiasta
@_JuraseC
Sectores aplicables para el internet
de las cosas.
Tecnologías utilizadas
JavaScript!
Esquema
$('.bulb-light').click(function() {
$('.bulb-light').toggleClass('night');
/* Emitimos el evento focoPrincipal, para notificar al servidor. */
io.emit('focoPrincipal', {command: $('.bulb-light').hasClass('night') ? 1 : 0});
});
app.io.route('focoPrincipal', function( request ) {
console.log('=> focoPrincipal: ', request.data.command);
request.data.command == 1 ? bulbLight120v.on() : bulbLight120v.off();
});
Servidor
Cliente
http://www.meetup.com/NodeBotsMX/
Comunidad
https://github.com/jurasec