diff options
| author | EnricoGuccii <partyka.003@gmail.com> | 2024-12-30 22:53:48 +0100 |
|---|---|---|
| committer | EnricoGuccii <partyka.003@gmail.com> | 2024-12-30 22:53:48 +0100 |
| commit | d7ea4d727b14870829464f79839acd60b82faa0b (patch) | |
| tree | cea1e1ed47519edc63511374ce41f70dd234e03d /src/main.cpp | |
first commit
Diffstat (limited to 'src/main.cpp')
| -rw-r--r-- | src/main.cpp | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/main.cpp b/src/main.cpp new file mode 100644 index 0000000..13e25b3 --- /dev/null +++ b/src/main.cpp @@ -0,0 +1,16 @@ +#include <Arduino.h> + + +#define LED_PIN 2 + +void setup() { + + pinMode(LED_PIN, OUTPUT); + digitalWrite(LED_PIN, LOW); +} + +void loop() { + + + +} |