int boton1=23;
int boton2=21;
void setup() {
// put your setup code here, to run once:
Serial.begin(115200);
pinMode(boton1, INPUT_PULLUP);
pinMode(boton2, INPUT_PULLUP);
}
void loop() {
delay(10); // this speeds up the simulation
}
int boton1=23;
int boton2=21;
void setup() {
// put your setup code here, to run once:
Serial.begin(115200);
pinMode(boton1, INPUT_PULLUP);
pinMode(boton2, INPUT_PULLUP);
}
void loop() {
delay(10); // this speeds up the simulation
}