Prop demo program for the parallax 4X20 serial LCD??
Guys I know I had seen this somewhere but wasn't there a prop demo program for the 4X20 serial LCD display I found the driver in the object exchange but I remember seeing a post at least I thought I did someone else had purchsed one and was having some problems and others posted some code?
Thanks
Thanks
Comments
Look at CustomChars and Hello World.
(Rename to .zip)
OBC
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
New to the Propeller?
Visit the: The Propeller Pages @ Warranty Void.
Old Bit what kind of file is this??? I can not seem to open it or read it
MIME club again. [noparse]:)[/noparse]
OBC
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
New to the Propeller?
Visit the: The Propeller Pages @ Warranty Void.
From what I can tell looking at the code I should be using P1 on the prop I have it going through a 1K resistor to the input of th LCD but I have also added a 4.7 pull up I have even tried a Pulling the line low as well.
I am not sure why it is not working
Same-Pin (Bi-Directional) True Mode Same-Pin (Bi-Directional) Inverted Mode
Ex: serial.init(0, 0, 9600) Ex: serial.init(0, 0, -9600)
┌────────────┐ ┌──────────┐
│ │Propeller P0├─────┳─────┤I/O Device│
4.7 kΩ └────────────┘ │ └──────────┘
┌────────────┐ │ ┌──────────┐ 4.7 kΩ
│Propeller P0├─────┻─────┤I/O Device│ │
└────────────┘ └──────────┘
I am looking at P1 on the prop when I load the program with my osciliscope but its not doing anything
This Serial LC shuld be the same basic thing as the 2X16?? right
Thanks for the help
CON 'These are clock constants _xinfreq = 5_000_000 _clkmode = xtal1 | pll16x pinLCD = 15 OBJ LCD : "FullDuplexSerialPlus" PUB StartLCD LCD.start(24, pinLCD, 0, 19200) 'NOTE THE 24 as recieve Pin UNTESTED AND UNNEEDED? LCD.tx(12) 'clear waitcnt((clkfreq/1000)*7+cnt) LCD.tx(17) 'backlight LCD.tx(22) 'No cursor LCD.str(string("Hello World!")) repeat