Example #1
0
void writeDataByte(char dataByte){
					LCDCON |= RS_MASK;

					LCDWRT8(dataByte);

					__delay_cycles(1000);
}
Example #2
0
void writeCommandByte(char commandByte){
	 	 	 	 	LCDCON &= ~RS_MASK;

					LCDWRT8(commandByte);

					__delay_cycles(1000);

}
Example #3
0
void writeString(char * string){
	int i = 0;
	LCDCON |= RS_MASK;
	for (i =0; i < 8; i++){
		LCDWRT8(string[i]);
		LCDDELAY2();
	}



}
Example #4
0
void writeDataByte(char dataByte){

    LCDCON |= RS_MASK;
    LCDWRT8(dataByte);
    LCDDELAY2();
}
Example #5
0
void writeCommandByte(char commandByte)
{
    LCDCON &= ~RS_MASK;
    LCDWRT8(commandByte);
    LCDDELAY2();
}
Example #6
0
void writeChar(char asciiChar){
	LCDCON |= RS_MASK;
	LCDWRT8(asciiChar);
	LCDDELAY2();

}