21 lines
263 B
C
Raw Normal View History

2022-09-01 21:49:49 +02:00
#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