link de simulación en protoboard https://www.youtube.com/watch?v=xiJeEpIu1xw Implementacion en circuito impreso(foto) Implementacion en circuito impreso(vídeo) https://youtu.be/YmyfgWk8yJk tarea asignada en laboratorio (vídeo) https://youtu.be/YomrGzXvn38 programa de modificación al programa /* Programa ChalecoV5.ino Realiza el control de encendido de los leds del chaleco de seguridad para ciclistas */ // Variables int bot[] = {1,2,3}; int led[] = {4,5,6,7,8,9,10,11,12,13}; int numLeds = 10; int numBots = 3; int tiempoRet = 100; int tiempoRetOciosa = 200; int tiempoPausa = 500; int bIzq=0; int bDer=0; int bAlto=0; int numeroVueltas=6; int estePin; int cuenta_der = 0; int cuenta_alto = 0; int cuenta_izq = 0; int cuenta_ocio = 0; boolean bot_derecha = LOW; boolean bot_alto = LOW; boolean bot_izquierda = LOW; // Función setup void setup () { for (estePin = 0; estePin < numBots; estePin++) ...
Comentarios
Publicar un comentario