aboutsummaryrefslogtreecommitdiff
path: root/zumo/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'zumo/main.cpp')
-rw-r--r--zumo/main.cpp13
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);
+}