summaryrefslogtreecommitdiff
path: root/src/main.cc
diff options
context:
space:
mode:
authorDaniel Friesel <derf@finalrewind.org>2018-05-31 10:56:17 +0200
committerDaniel Friesel <derf@finalrewind.org>2018-05-31 10:56:17 +0200
commitd040ed5eecb104c201b330c468df3b6d8c59b7f1 (patch)
tree7ea3bf6e09734f742af1814487dd8a53a62388af /src/main.cc
Initial commit. Working static light, but no rgbfade yet
Diffstat (limited to 'src/main.cc')
-rw-r--r--src/main.cc15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/main.cc b/src/main.cc
new file mode 100644
index 0000000..39a3e38
--- /dev/null
+++ b/src/main.cc
@@ -0,0 +1,15 @@
+#include <avr/io.h>
+#include <stdlib.h>
+
+#include "system.h"
+
+int main (void)
+{
+ blinkencat.initialize();
+
+ while (1) {
+ blinkencat.loop();
+ }
+
+ return 0;
+}