mirror of
https://github.com/bendtherules/Patient-counter-esp8266.git
synced 2026-08-19 00:30:48 +00:00
10 lines
177 B
C
10 lines
177 B
C
#include <Arduino.h>
|
|
|
|
enum DISPLAY_POSITION {
|
|
POSITION_LEFT,
|
|
POSITION_RIGHT,
|
|
};
|
|
|
|
void setupDisplay();
|
|
void showNumber(uint8_t number);
|
|
void showInsideInfo(const char* text); |