messages.h
来自「The collection of AVR source code in C.」· C头文件 代码 · 共 21 行
H
21 行
// identify yourself specifically
const char TALKING_TO[] PROGMEM = "\rYou are talking to the ";
const char WHO_DEMO[] PROGMEM = "'Real Time Clock' demo.\r";
// bad command
const char BAD_COMMAND1[] PROGMEM = "\rYou sent: '";
const char BAD_COMMAND2[] PROGMEM = "' - I don't understand.\r";
const char ENTER[] PROGMEM = "Enter ";
const char TEXT_GET[] PROGMEM = "'get' to get the time and date.\r";
const char TEXT_SEC[] PROGMEM = "'secXX' to set the second";
const char TEXT_MIN[] PROGMEM = "'minXX' to set the minute";
const char TEXT_HOUR[] PROGMEM = "'hourXX' to set the hour";
const char TEXT_TOXX[] PROGMEM = " to XX.\r";
const char ERROR_NUMBER[] PROGMEM = "\rERROR - number must be less than ";
const char ERROR_60[] PROGMEM = " 60.\r";
const char ERROR_12[] PROGMEM = " 12.\r";
const char THE_TIME_IS[] PROGMEM = "The time is: ";
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?