diff options
author | Brett Weiland <brett_weiland@bpcspace.com> | 2023-08-23 00:37:32 -0500 |
---|---|---|
committer | Brett Weiland <brett_weiland@bpcspace.com> | 2023-08-23 00:37:32 -0500 |
commit | 6eede9dff50d6ca24855d455ac5bc5fea76f72ca (patch) | |
tree | a44a0e33ec2e3a4c7c2fcfb90f09289dc2bda0dc |
-rw-r--r-- | controller/controller.ino | 6 | ||||
-rw-r--r-- | makefile | 2 |
2 files changed, 8 insertions, 0 deletions
diff --git a/controller/controller.ino b/controller/controller.ino new file mode 100644 index 0000000..74f966a --- /dev/null +++ b/controller/controller.ino @@ -0,0 +1,6 @@ + +void setup() { +} + +void loop() { +} diff --git a/makefile b/makefile new file mode 100644 index 0000000..0e471d2 --- /dev/null +++ b/makefile @@ -0,0 +1,2 @@ +make: + arduino-cli compile --clean --warnings all -b arduino:avr:nano controller |