diff options
author | lonkaars <loek@pipeframe.xyz> | 2023-04-25 20:55:35 +0200 |
---|---|---|
committer | lonkaars <loek@pipeframe.xyz> | 2023-04-25 20:55:35 +0200 |
commit | a5ae433b7f12246adb709a57223a853bd2a948c1 (patch) | |
tree | 9d82a347d34a4b1b8c71a54886999f6beb016953 /zumo/main.cpp | |
parent | 3a5c0f9bc2f9049114228e472826e31423dc5263 (diff) |
WIP arduino + pololu libraries build system
Diffstat (limited to 'zumo/main.cpp')
-rw-r--r-- | zumo/main.cpp | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/zumo/main.cpp b/zumo/main.cpp new file mode 100644 index 0000000..23d13db --- /dev/null +++ b/zumo/main.cpp @@ -0,0 +1,13 @@ +#include <Zumo32U4.h> +#include <Arduino.h> +#include <Wire.h> + +void setup() { +} + +void loop() { + ledRed(1); + delay(1000); + ledRed(0); + delay(1000); +} |