AfRApay/AfRApay.MateCard/include/oled.h

12 lines
354 B
C
Raw Normal View History

2023-02-08 02:25:12 +01:00
#pragma once
2023-02-06 02:23:00 +01:00
#include "Arduino.h"
#include <U8g2lib.h>
#include "logos.h"
#include "utils.h"
void drawLogo(U8G2 u8g2, e_logo logo);
void drawStatusText(U8G2 u8g2, String status, String statusRightAligned = "");
void updateOLED(U8G2 u8g2, e_state state, String statusText, String statusTextRightAligned = "");
2023-02-08 16:42:47 +01:00
void updateOLED(U8G2 u8g2, e_state state);