Actionner un rideau electrique via un tapis interrupteur pour montrer un carré de bois, peint en or.
const int buttonPin = 2; // tapis switch const int relai = 4; // relay pin int buttonState = 0; // variable initialisant le tapis bouton void setup() { pinMode(relai, OUTPUT); pinMode(buttonPin, INPUT); } void loop() { // read the state of the pushbutton value: buttonState = digitalRead(buttonPin); if (buttonState == HIGH) { digitalWrite(relai, HIGH); } else { digitalWrite(relai, LOW); } }
Code pour afficher les images du projet :
{{gallery>?&crop&lightbox}}