Created
March 2, 2024 18:08
-
-
Save asiniy/fe595187742b285b8a293df4e7bb23dd to your computer and use it in GitHub Desktop.
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
void setup() { | |
pinMode(8, OUTPUT); | |
pinMode(13, OUTPUT); | |
} | |
void loop() { | |
// Макс вредло | |
digitalWrite(8, HIGH); | |
digitalWrite(13, HIGH); | |
delay(60000); | |
digitalWrite(8, LOW); | |
digitalWrite(13, LOW); | |
delay(20000' | |
); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment