ESP32-PaxCounter/src/display.h

15 lines
327 B
C
Raw Normal View History

2018-07-17 15:15:58 +02:00
#ifndef _DISPLAY_H
#define _DISPLAY_H
2018-07-15 14:28:05 +02:00
#include <U8x8lib.h>
2018-07-19 21:53:56 +02:00
extern uint8_t DisplayState;
2018-09-22 19:39:31 +02:00
extern HAS_DISPLAY u8x8;
2018-07-19 21:53:56 +02:00
2018-07-15 14:28:05 +02:00
void init_display(const char *Productname, const char *Version);
2018-07-22 08:41:41 +02:00
void refreshtheDisplay(void);
2018-07-15 14:28:05 +02:00
void DisplayKey(const uint8_t *key, uint8_t len, bool lsb);
2018-07-23 08:25:23 +02:00
void updateDisplay(void);
void DisplayIRQ(void);
2018-07-15 14:28:05 +02:00
#endif