summaryrefslogtreecommitdiff
path: root/src/main.cc
diff options
context:
space:
mode:
authorDaniel Friesel <derf@finalrewind.org>2016-01-26 19:52:54 +0100
committerDaniel Friesel <derf@finalrewind.org>2016-01-26 19:52:54 +0100
commitce235210b76332493ee5c78bded63fb5b69ff6d3 (patch)
treeea47e5c775409b88f4e5b870aa807e2c84692e7f /src/main.cc
parent0e8a263587c91fe0b8bf177ec94a49c207eef4cf (diff)
preliminary animation support
Diffstat (limited to 'src/main.cc')
-rw-r--r--src/main.cc7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/main.cc b/src/main.cc
index b47c848..e3bc2f9 100644
--- a/src/main.cc
+++ b/src/main.cc
@@ -12,9 +12,14 @@
int main (void)
{
- text ohai;
+ text_t ohai;
ohai.str = (uint8_t *)"Ohai! ";
+ //uint8_t anim_data[] = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0, 0, 0, 0, 0, 0, 0, 0 };
+
+ //animation_t test;
+ //test.data = anim_data;
+
// disable ADC to save power
PRR |= _BV(PRADC);