# define PIN3 3 # define PIN4 4 int valorePin3 = 0; int valorePin4 = 0; void setup() {pinMode(PIN3, INPUT); pinMode(PIN4, INPUT); Serial.begin(9600) ;} void loop() { valorePin3 = digitalRead(PIN3); if (valorePin3 == HIGH ) { Serial.print(" PIN3HIGH "); delay (5000); valorePin4 = digitalRead(PIN4); if (valorePin4 == HIGH ) { Serial.print(" PIN4HIGH "); delay (5000); } else { Serial.print(" PIN4LOW "); delay (5000); }} else { Serial.print(" PIN3LOW "); delay (5000); } }
Nessun commento:
Posta un commento