Skip to content

Instantly share code, notes, and snippets.

@Viper-7
Created October 13, 2019 01:08
Show Gist options
  • Save Viper-7/f449dfe6258e85d3b67d1f769eb0fb83 to your computer and use it in GitHub Desktop.
Save Viper-7/f449dfe6258e85d3b67d1f769eb0fb83 to your computer and use it in GitHub Desktop.
#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