Skip to content

Commit

Permalink
Update main.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
bmorcelli authored May 7, 2024
1 parent 0e25be6 commit 2d7f854
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,8 @@ TFT_eSprite draw = TFT_eSprite(&tft);
#include "dpwo.h"
#include "wg.h"
#include "rfid.h"
#include "Wire.h"
#include "mfrc522_i2c.h"
#include "TV-B-Gone.h"

#ifdef CARDPUTER
Expand Down Expand Up @@ -189,7 +191,7 @@ void loop() {
break;
case 2: // RF
options = {
{"Scan/copy", [=]() { displayRedStripe("Scan/copy"); }},
{"Scan/copy", [=]() { displayRedStripe("Scan/Copy"); }},
{"Replay", [=]() { displayRedStripe("Replay"); }},
{"Spectrum", [=]() { displayRedStripe("Spectrum"); }},
{"Main Menu", [=]() { backToMenu(); }},
Expand All @@ -206,7 +208,7 @@ void loop() {
};
delay(200);
loopOptions(options,false,true,"RFID");
delay(1000); // remover depois, está aqui só por causa do "displayRedStripe"
//delay(1000); // remover depois, está aqui só por causa do "displayRedStripe"
break;
case 4: //Other
options = {
Expand Down Expand Up @@ -238,4 +240,3 @@ void loop() {
}
}
}

0 comments on commit 2d7f854

Please sign in to comment.