code
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#define relay 13 | |
void setup() { | |
pinMode(relay,OUTPUT); | |
digitalWrite(relay,LOW); | |
} | |
void loop() { | |
digitalWrite(relay,LOW); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#define relay 13 | |
void setup() { | |
pinMode(relay,OUTPUT); | |
digitalWrite(relay,LOW); | |
} | |
void loop() { | |
digitalWrite(relay,HIGH); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#define relay 13 | |
void setup() { | |
pinMode(relay,OUTPUT); | |
digitalWrite(relay,HIGH); | |
} | |
void loop() { | |
digitalWrite(relay,HIGH); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#define relay 13 | |
void setup() { | |
pinMode(relay,OUTPUT); | |
digitalWrite(relay,HIGH); | |
} | |
void loop() { | |
digitalWrite(relay,LOW); | |
} |