Node y GPIO https://www.w3schools.com/nodejs/nodejs_raspberrypi_gpio_intro.asp Raspberrry PI https://www.raspberrypi.org/ Luis Llamas https://www.luisllamas.es/tutoriales-de-arduino/ Programar es una mierda https://www.programaresunamierda.com/p/comunidad-en-slack.html Recursos
11 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');
Node REST API con autenticación con JWT, Tests con Mocha y Supertest. Base de datos MariaDB. Aplicación Angular 8 con autenticación con JWT, Tests con Karma y gráficos con Chart.js.