diff options
Diffstat (limited to 'lib/oled/oled.h')
| -rw-r--r-- | lib/oled/oled.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/oled/oled.h b/lib/oled/oled.h index 4873285..b6fe7fa 100644 --- a/lib/oled/oled.h +++ b/lib/oled/oled.h @@ -9,8 +9,8 @@ public: void init(); void showMessage(const String& msg,int size = 1 ,int x = 0, int y = 0); - void drawBitmap(const uint8_t* bitmap); - void showAnimation(const uint8_t* animation[], int frames, int delayTime); + void drawFullBitmap(const uint8_t* bitmap); + void showAnimation(const byte* frames, int frameCount, int frameWidth, int frameHeight, int frameDelay); void clear(); private: |