void setup() {
Serial.begin(115200);
for(int i = 12; i<=17; i++){
pinMode(i, INPUT_PULLUP);
}
}
void loop() {
// put your main code here, to run repeatedly:
delay(10); // this speeds up the simulation
}
void setup() {
Serial.begin(115200);
for(int i = 12; i<=17; i++){
pinMode(i, INPUT_PULLUP);
}
}
void loop() {
// put your main code here, to run repeatedly:
delay(10); // this speeds up the simulation
}