示例#1
0
void printCharToLCD(const char c, byte l, byte p) {
    // set cursor to selected position
    setCursorLCD(l,p);

    // append to this position
    appendCharToLCD(c);
}
void printCharToLCD(const char c, BYTE l, BYTE p) {
	BYTE temp;
	
	// set cursor to selected position
	setCursorLCD(l,p);

	// append to this position
	appendCharToLCD(c);
}
void appendStringToLCDcharptr(char* message) {
  while(*message) {
    appendCharToLCD(*message++);
  }
}
void appendStringToLCD_(const far rom char* message) {
	while (*message) {
		appendCharToLCD(*message++);
	}
}
示例#5
0
void appendStringToLCD_(const FAR_ROM char* message) {
	while (*message) {
		appendCharToLCD(*message++);
	}
}