#ifndef STRINGS_H #define STRINGS_H #include const uint8_t ST_TITLE[] = "EASYBAKE"; const uint8_t ST_VER[] = "V1.4"; const uint8_t ST_PRESS_BUTTON_TO_START[] = "PRESS TO START"; const uint8_t ST_PRESS_TO_RESTART[] = "PRESS TO RESTART"; const uint8_t ST_START_HOT[] = "START HOT"; const uint8_t ST_RUN[] = "RUN"; const uint8_t ST_COOLING[] = "COOLING"; const uint8_t ST_DONE[] = "DONE"; const uint8_t ST_THERMOCOUPLE_ERROR[] = "THERMOCOUPLE ERROR"; const uint8_t ST_UNABLE_TO_REACH[] = "UNABLE TO REACH"; const uint8_t ST_OVERTEMP[] = "OVERTEMP"; const uint8_t ST_UNDERTEMP[] = "UNDERTEMP"; const uint8_t ST_UNABLE_TO_COOL[] = "UNABLE TO COOL"; const uint8_t ST_ERROR[] = "ERROR"; const uint8_t ST_FAILED[] = "FAILED"; const uint8_t ST_ABORTED[] = "ABORTED"; const uint8_t ST_SUCCESS[] = "SUCCESS"; #endif /* STRINGS_H */