Skip to content

Instantly share code, notes, and snippets.

@lefuturiste
Created February 22, 2019 20:23
Show Gist options
  • Save lefuturiste/fb82a723345cfcc46f73490418eff6f8 to your computer and use it in GitHub Desktop.
Save lefuturiste/fb82a723345cfcc46f73490418eff6f8 to your computer and use it in GitHub Desktop.
#include <MeAuriga.h>
// the setup function runs once when you press reset or power the board
void setup() {
// initialize digital pin LED_BUILTIN as an output.
pinMode(A13, OUTPUT);
}
// the loop function runs over and over again forever
void loop() {
digitalWrite(A13, HIGH); // turn the LED on (HIGH is the voltage level)
delay(1000); // wait for a second
digitalWrite(A13, LOW); // turn the LED off by making the voltage LOW
delay(1000); // wait for a second
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment