1
0
Fork 0
i237/src/hmi_msg.h

20 lines
594 B
C
Raw Normal View History

2016-10-10 22:24:33 +03:00
#include <avr/pgmspace.h>
2016-09-26 17:33:21 +03:00
#ifndef _HMI_MSG_H_
#define _HMI_MSG_H_
2016-10-23 22:58:24 +03:00
#define PROG_VERSION "Version: %S built on: %S %S\n"
#define LIBC_VERSION "avr-libc version: %S\n"
2016-10-23 22:11:20 +03:00
#define STUD_NAME "Arti Zirk"
#define GET_MONTH_MSG "Enter Month name first letter >"
2016-11-07 02:30:33 +02:00
#define UPTIME_MSG "Uptime: %lu s"
2016-09-26 17:33:21 +03:00
2016-10-24 16:08:34 +03:00
const char m1[] PROGMEM = "January";
const char m2[] PROGMEM = "February";
const char m3[] PROGMEM = "March";
const char m4[] PROGMEM = "April";
const char m5[] PROGMEM = "May";
const char m6[] PROGMEM = "June";
2016-10-23 22:49:49 +03:00
2016-10-24 16:08:34 +03:00
PGM_P const months[] PROGMEM = {m1,m2,m3,m4,m5,m6};
2016-09-26 17:33:21 +03:00
#endif /* _HMI_MSG_H_ */