Files
Patient-counter-esp8266/include/myDisplay.h
T
2023-11-28 18:31:47 +05:30

13 lines
220 B
C

#include <Arduino.h>
enum DISPLAY_POSITION {
POSITION_LEFT,
POSITION_RIGHT,
};
#define LCD_COLUMNS 16
#define LCD_ROWS 2
void setupDisplay();
void showNumber(uint8_t number);
void showInsideInfo(const char* text);