Skip to content

Commit

Permalink
agregar mas comentarios
Browse files Browse the repository at this point in the history
  • Loading branch information
montoyamoraga committed Sep 10, 2024
1 parent 51ea538 commit bfca273
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions 17-AlanisMria/clase-05/codigoIntentoV0/codigoIntentoV0.ino
Original file line number Diff line number Diff line change
Expand Up @@ -89,14 +89,14 @@ void loop() {
switch (currentState) {
// en este estado esperamos la accion del usuario
// 'presionar cualquie boton para que empiece el juego' y asi cambie a un estado activo
case STANDBY:
case REPOSO:
{
Serial.println("En estado STANDBY");
int lecturaA = digitalRead(BOTON_ENTRADA);

// presiona cualquier boton para salir del estado standby y pasa a estado NIVEL4
// presiona cualquier boton para salir del estado standby y pasa a estado NIVEL_4
if (!lecturaA) {
currentState = NIVEL4;
currentState = NIVEL_4;
}
break;
}
Expand Down Expand Up @@ -151,7 +151,9 @@ void loop() {
// TODO antes de inicializar la matrix, tienes que declararla
// ya lo hice arriba antes de setup()
// y luego la inicialize en setup()
matrix.loadFrame(Nivel4);
// ojo con https://docs.arduino.cc/tutorials/uno-r4-wifi/led-matrix/
// ahi dice como crear tus frames, use uno que viene en la biblioteca
matrix.loadFrame(LEDMATRIX_EMOJI_BASIC);

break;
}
Expand Down

0 comments on commit bfca273

Please sign in to comment.