Click here to Skip to main content
15,890,717 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hello, can anyone please tell me how to program a PIC16F72 chip to output a text like "HELLO" to a LCD DISPLAY. I am using CCS compiler to compile the code.

here is a sample of my code :

#include<16f72.h>
#USE DELAY(Clock=4000000)
#FUSES XT,NOWDT,NOPROTECT
#USE RS232(baud=9600,XMIT=PIN_B0,RCV=PIN_B1)
main()
{
set_tris_b(0x00);

while(TRUE)
{
puts("HELLO");
}

}

Can anyone please help me with it ?? :( :confused:
Posted

Take a look here[^], and you should be able to find the information you need.
 
Share this answer
 
Thanks for your help, but that wasn't of much help to me. Can someone please tell me how to communicate with the LCD like displaying a text. I am using the CCS Compiler and not HI-TECH C Compiler ..

Thanks a lot in advance :-D
 
Share this answer
 
It really depends on the hardware involved. There are a lot of different LCD displays around and you say nothing about the one you have to deal with.
As a general rule, reading the documentation should help.

BTW: please add further details to your original question, don't post fake answers.
:)
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900