Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

How to interface 16x2 LCD with PIC16F690?

Status
Not open for further replies.

vvmm

Newbie level 5
Joined
Jun 20, 2010
Messages
8
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,281
Location
Bucharest, Romania, Romania
Activity points
1,363
16x2 LCD

Hello!

I have just bought a PICKIT2 with PIC16F690 and a 16x2 LCD character display.
Can anyone help me write a Hello World! message on the LCD, please?

I knew how to control the LCD with Z80 CPU, but with PIC I didn't manage to do it.
 

16x2 LCD

Search...

Google is the best friend

Nandhu
 

Re: 16x2 LCD

When you are programming in c, you can have a look at **broken link removed** which explains how to initialize and drive an lcd display using an easy to use library. Although the tutorial uses an PIC18Fxx, the code should also work on your PIC.
 

16x2 LCD

TRY YOURSELF AND YOU'LL LEARN A LOT.
 

16x2 LCD

Hi,
In mikroBASIC v7.2 and later, it's very easy. You can print on LCD like:
Code:
     LCD_Init(PORTC)
     LCD_Cmd(LCD_CURSOR_OFF)
     LCD_Out(1,1,"Hello World")
     while true
     wend

D7-RC7
D6-RC6
D5-RC5
D4-RC4
E-RC3
RS-RC2
RW-GND

Hope this helps.
Tahmid.
 

Re: 16x2 LCD

HI,

Just write jhd 162a in google. You will get datasheet for lcd. and then go for its interface with any controller.

NIKS
 

Status
Not open for further replies.

Similar threads

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top