Propeller, Scott Edwards Serial Backpack
arakarnouzian
Posts: 1
·I am trying to interface my propeller with a scott edwards serial backpack LCD module.
·is there anyone who has a driver and a sample program for this task?
·is there anyone who has a driver and a sample program for this task?
Comments
lcd.init(-1, 0, -9600)
The -1 means no RX pin, 0 is the pin to use for TX, and -9600 means 9600 baud, inverted.
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
Jon McPhalen
Hollywood, CA
The Seetron LCDs need 5 volts for power.·Mine will sometimes accept 3.3 volts at the input for the signal, but there are a couple of problems with doing that. One is that if the 5 volts rises just slightly, like to 5.1 or 5.2 volts, it can pass the switching threshold and the display may no longer work. Another problem is the displays (at leat the versions I have) must be powered up with the data line low or else it goes into diasgnostic mode.
At the top of my code is a schematic of a one transistor interface that works pretty well to both drive the data line with 5v, and make sure it initializes properly.
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
Jon McPhalen
Hollywood, CA