hardware/Rmodule/res/strings.h

18 lines
450 B
C
Raw Normal View History

2013-11-15 14:42:41 +07:00
#include <avr/pgmspace.h>
2013-11-18 21:27:01 +07:00
#define CRLF "\r\n"
2013-11-15 14:42:41 +07:00
2013-11-18 21:27:01 +07:00
//
const char CmdLD[] PROGMEM = "ld";
const char CmdHelp[] PROGMEM = "h";
// <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
const char HelpTitle[] PROGMEM = CRLF "Command list:";
const char HelpItem1[] PROGMEM = CRLF "ld - List devices";
const char HelpItem2[] PROGMEM = CRLF "h - Show this help";
const char CmdPrompt[] PROGMEM = CRLF "$ ";
// <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
const char ScanStr[] PROGMEM = CRLF "Scanning 1-wire bus" CRLF;
2013-11-15 14:42:41 +07:00