Skip to content

Instantly share code, notes, and snippets.

@asiniy
Created March 2, 2024 18:08
Show Gist options
  • Save asiniy/fe595187742b285b8a293df4e7bb23dd to your computer and use it in GitHub Desktop.
Save asiniy/fe595187742b285b8a293df4e7bb23dd to your computer and use it in GitHub Desktop.
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