From 4bf560b6f3ef6089af04dfc56d078b9978496b07 Mon Sep 17 00:00:00 2001 From: Daniel Friesel Date: Mon, 1 Feb 2016 20:55:10 +0100 Subject: add animation delay support --- src/main.cc | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'src/main.cc') diff --git a/src/main.cc b/src/main.cc index 160406c..37dc8bd 100644 --- a/src/main.cc +++ b/src/main.cc @@ -12,16 +12,18 @@ int main (void) { ohai.type = AnimationType::TEXT; ohai.speed = (2 << 4) + 15; - ohai.data = (uint8_t *)"\001 Ohai "; + ohai.data = (uint8_t *)" Ohai \001"; ohai.length = 8; + ohai.delay = (0 << 4) + 0; // -> 4bit 0 remains 0 - uint8_t anim_data[] = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0, 0, 0, 0, 0, 0, 0, 0 }; + uint8_t anim_data[] = { 0x80, 0x40, 0x20, 0x10, 0x08, 0x04, 0x02, 0x01, 0x01, 0x02, 0x04, 0x08, 0x10, 0x20, 0x40, 0x80 }; animation_t test; test.type = AnimationType::FRAMES; test.speed = 14; test.length = 2*8; test.data = anim_data; + test.delay = (1 << 4); rocket.initialize(); -- cgit v1.2.3