12 lines
250 B
C
12 lines
250 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 refreshDisplay(void);
|
|
void DisplayKey(const uint8_t *key, uint8_t len, bool lsb);
|
|
|
|
#endif |