Five: http://johnny-five.io/ Node y GPIO https://www.w3schools.com/nodejs/nod ejs_raspberrypi_gpio_intro.asp Raspberrry PI https://www.raspberrypi.org/
Prieto https://twitter.com/nuria_imeq Sergio Morcuende https://twitter.com/_serxius_ https://www.youtube.com/watch?v=girA0gsn-fs Programar es una mierda https://www.programaresunamierda.com/p/comunidad -en-slack.html Luis Llamas https://www.luisllamas.es/tutoriales-de-arduino/
19 const Gpio = require('onoff').Gpio; // Led var turnOnLed = new Gpio(18, 'out'); var falseAnswerLed = new Gpio(20, 'out'); var trueAnswerLed = new Gpio(21, 'out'); // Buttons var questionButton = new Gpio(26, 'in', 'both'); var answerAButton = new Gpio(19, 'in', 'both'); var answerBButton = new Gpio(13, 'in', 'both'); var answerCButton = new Gpio(06, 'in', 'both');