void setup() {
Serial.begin(115200);
bool Lucas = true;
int Controle = 0;
while (Controle < 10) {
if (Lucas) {
Serial.println("Lucas ta vivo");
delay(100);
}
else {
Serial.println("Lucas ta morto");
delay(100);
}
Controle++;
}
Lucas = !Lucas;
}
void loop() {}