This commit is contained in:
2023-12-26 16:55:02 -05:00
commit 71329d5484
32 changed files with 1248 additions and 0 deletions

31
Firmware/src/main.cpp Normal file
View File

@@ -0,0 +1,31 @@
/**
* @file main.cpp
* @author Joe
* @brief Source code for InstrumentVisor
*/
// Libs
#include <Arduino.h>
// Headers
#include "boardPins.h"
void setup()
{
// Setup serial
delay(200);
Serial.begin(115200);
Serial.println(REVISION);
// Pins
pinMode(STAT_LED, OUTPUT);
}
void loop()
{
// Flash LED
digitalWrite(STAT_LED, HIGH);
delay(1000);
digitalWrite(STAT_LED, LOW);
delay(1000);
}