Created
October 13, 2019 01:08
-
-
Save Viper-7/f449dfe6258e85d3b67d1f769eb0fb83 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
#include <Arduino.h> | |
void setup() { | |
pinMode(PA6, OUTPUT); | |
pinMode(PA7, OUTPUT); | |
} | |
void loop() { | |
digitalWrite(PA6, HIGH); | |
digitalWrite(PA7, LOW); | |
delay(100); | |
digitalWrite(PA6, LOW); | |
digitalWrite(PA7, HIGH); | |
delay(100); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment