14 lines
302 B
C
14 lines
302 B
C
#ifndef _DISPLAY_H
|
|
#define _DISPLAY_H
|
|
|
|
#include <U8x8lib.h>
|
|
|
|
extern uint8_t DisplayState;
|
|
|
|
void init_display(const char *Productname, const char *Version);
|
|
void refreshtheDisplay(void);
|
|
void DisplayKey(const uint8_t *key, uint8_t len, bool lsb);
|
|
void updateDisplay(void);
|
|
void DisplayIRQ(void);
|
|
|
|
#endif |