void setup() {
// put your setup code here, to run once:
Serial.begin(115200);
pinMode(14, INPUT_PULLUP);
pinMode(32, OUTPUT);
}
void loop() {
// put your main code here, to run repeatedly:
delay(100); // this speeds up the simulation
Serial.println(digitalRead(14));
digitalWrite(32, digitalRead(14));
// digitalWrite(32, !digitalRead(14));
}