diff options
Diffstat (limited to 'src/main.cc')
-rw-r--r-- | src/main.cc | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/main.cc b/src/main.cc index 91ff92a..765f1d9 100644 --- a/src/main.cc +++ b/src/main.cc @@ -10,11 +10,12 @@ #include "modem.h" #include "system.h" +animation_t ohai; + int main (void) { - animation_t ohai; ohai.mode = AnimationType::TEXT; - ohai.speed = (4 << 4) + 15; + ohai.speed = (2 << 4) + 15; ohai.data = (uint8_t *)"\001 Ohai "; ohai.length = 8; |