mirror of
https://gitlab.com/fabinfra/fabhardware/fabreader.git
synced 2025-03-13 07:01:44 +01:00
21 lines
263 B
C
21 lines
263 B
C
|
#ifndef DISPLAY_H
|
||
|
#define DISPLAY_H
|
||
|
enum State
|
||
|
{
|
||
|
CONNECT_WIFI,
|
||
|
CONNECT_MQTT,
|
||
|
FREE,
|
||
|
INUSE,
|
||
|
AUTHORIZE
|
||
|
};
|
||
|
|
||
|
String Messages [] =
|
||
|
{
|
||
|
"Connecting to WIFI ...",
|
||
|
"Connecting to MQTT ...",
|
||
|
"Free",
|
||
|
"In Use",
|
||
|
"Authorize ..."
|
||
|
}
|
||
|
|
||
|
#endif
|