View previous topic :: View next topic |
Author |
Message |
Levett Prins Guest
|
LCD Everbouquet help? |
Posted: Wed Jun 18, 2003 11:48 am |
|
|
I am new at LCD's and want to use a one line EVERBOUQUET LCD (MC1601C series). I do not have many output pins left to drive the LCD!
Can someone help me with wiring setup and example code?
___________________________
This message was ported from CCS's old forum
Original Post ID: 144515363 |
|
|
PCM programmer
Joined: 06 Sep 2003 Posts: 21708
|
Re: LCD Everbouquet help? |
Posted: Wed Jun 18, 2003 12:56 pm |
|
|
:=I am new at LCD's and want to use a one line EVERBOUQUET LCD (MC1601C series). I do not have many output pins left to drive the LCD!
:=
:=Can someone help me with wiring setup and example code?
-------------------------------------------------------
Well, the thread for people who don't have the compiler,
but come here asking how to use an LCD is here:
<a href="http://www.pic-c.com/forum/general/posts/144515221.html" TARGET="_blank">http://www.pic-c.com/forum/general/posts/144515221.html</a>
Consult your data sheet, here:
<a href="http://www.everbouquet.com.tw/MC1601C.htm" TARGET="_blank">http://www.everbouquet.com.tw/MC1601C.htm</a>
___________________________
This message was ported from CCS's old forum
Original Post ID: 144515366 |
|
|
Levett Prins Guest
|
Re: LCD Everbouquet help? |
Posted: Fri Jun 20, 2003 10:32 am |
|
|
Thanx. I used the PCM driver and got the LCD going easy, BUT I still have a problem with the number pins required. Whould using another PIC that solely drives the LCD with RS232 comms to the main PIC be the best solution?
Regards
Levett
___________________________
This message was ported from CCS's old forum
Original Post ID: 144515430 |
|
|
PCM programmer
Joined: 06 Sep 2003 Posts: 21708
|
Re: LCD Everbouquet help? |
Posted: Fri Jun 20, 2003 11:29 am |
|
|
:=Thanx. I used the PCM driver and got the LCD going easy, BUT I still have a problem with the number pins required. Whould using another PIC that solely drives the LCD with RS232 comms to the main PIC be the best solution?
:=
----------------------------------------------------------
Here is a method that uses a shift register to reduce the
number of PIC i/o pins.
<a href="http://www.rentron.com/Myke1.htm" TARGET="_blank">http://www.rentron.com/Myke1.htm</a>
He's not using a shift-register IC. Instead, he just used
a LS174, which has 6 flip-flops in it, and then he wired it
as shift-register. He also uses a diode and a resistor.
So these are a lot of external parts. Maybe it's better
to use a LCD with an RS-232 interface. Here is a company
that sells those LCDs. <a href="http://www.seetron.com/slcds.htm" TARGET="_blank">http://www.seetron.com/slcds.htm</a>
Here is some sample code to use with a serial LCD.
I don't know if this code has been tested with the LCDs
available from the link above.
<a href="http://www.phanderson.com/PIC/PICC/CCS_PCM/lcd_f84.html" TARGET="_blank">http://www.phanderson.com/PIC/PICC/CCS_PCM/lcd_f84.html</a>
___________________________
This message was ported from CCS's old forum
Original Post ID: 144515431 |
|
|
|