problems with display messages on LCD
I buy the super basic stamp carrie with lcd screen
http://www.parallax.com/StoreSearchResults/tabid/768/txtSearch/27976/List/0/SortField/4/ProductID/51/Default.aspx
Guide
http://www.parallax.com/Portals/0/Downloads/docs/prod/audiovis/27976-7-9-ParallaxSerialLCD-v2.1.pdf
Achievement to show me the example of parallax message
Now change the "baudrate" to 19200 2 swich bone are in "On"
Now run the following program
But the LCD only shows me "_" , and nothing happens
What could be happening?
Thank you very much
http://www.parallax.com/StoreSearchResults/tabid/768/txtSearch/27976/List/0/SortField/4/ProductID/51/Default.aspx
Guide
http://www.parallax.com/Portals/0/Downloads/docs/prod/audiovis/27976-7-9-ParallaxSerialLCD-v2.1.pdf
Achievement to show me the example of parallax message
Now change the "baudrate" to 19200 2 swich bone are in "On"
Now run the following program
' {$STAMP BS2}
TxPin CON 0
Baud19200 CON 32
HIGH TxPin ' Set pin high to be a serial port
PAUSE 100 ' Pause for Serial LCD to initialize
SEROUT TxPin, Baud19200, [noparse][[/noparse]"Hello, this text will wrap."]
But the LCD only shows me "_" , and nothing happens
What could be happening?
Thank you very much

Comments
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
- Stephen
and i test this code
' {$STAMP BS2} ' {$PBASIC 2.5} '84 is argument for 9600 buad SEROUT 14, 84, [noparse][[/noparse]22, 12, 22] ' Initialize LCD PAUSE 5 SEROUT 14, 84, [noparse][[/noparse]"See this?", 13, ' Text message, carriage return "The LCD works!"] ' more text on Line 1. END ' Program endbut stil dont working.
Post Edited (wu4m4n) : 5/20/2010 1:26:52 AM GMT
Your dwg shows its RX connected to P0 so your commands need to start with SEROUT 0
'·{$STAMP·BS2}
'·{$PBASIC·2.5}
'84·is·argument·for·9600·buad
SEROUT·0,·84,·[noparse][[/noparse]22,·12,·22]·'·Initialize·LCD
PAUSE 1000
END·'·Program·end
then re power both of them
' {$STAMP BS2} ' {$PBASIC 2.5} '84 is argument for 9600 baud SEROUT 15, 84, [noparse][[/noparse]22, 12, 22] ' Initialize LCD on Pin 15 PAUSE 20 ' you can use 5 but you can only see the second line not first line SEROUT 15, 84, [noparse][[/noparse]"See this ?", 13, ' Text message, carriage return "The LCD works!"] ' more text on Line 1. END ' Program end' {$STAMP BS2} ' CON is the # which ever pin you are using on your basic stamp board pin Tx_Pin CON 15 ' Pin 15 = the Basic Stamp pin then to LCD display Baud_19200 CON 32 HIGH Tx_Pin ' Pin 15 Set pin HIGH TO be a serial port PAUSE 100 ' Pause for Serial LCD to initialize SEROUT Tx_Pin, Baud_19200, [noparse][[/noparse]"Hello, this text will wrap."]I tryed both of them and they work
·
' -----[noparse][[/noparse] Constants ]------------------------------------------------------- #SELECT $STAMP ' You need to use the right CON for which Basic Stamp and for which Baud rate for the LCD ' that you are using #CASE BS2, BS2E, BS2PE T2400 CON 396 T9600 CON 84 T19K2 CON 32 #CASE BS2SX, BS2P T2400 CON 1021 T9600 CON 240 T19K2 CON 110 #ENDSELECT LcdBaud CON T19K2▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
·Now wanting to learn Spin· Thanks for any·
·
·
·
·
Sam
Post Edited (sam_sam_sam) : 5/20/2010 7:30:04 PM GMT
@Franklin - The BS2 can transmit reliably well past 19.2Kbps...in fact it communicates with the PSC at 38.4Kbps just fine, both send and receive.· What the BASIC Stamp does have a problem with at higher baud rates is large packets of data or formatted data.· Simple sending and receiving of a few bytes at 38.4Kbps should never be a problem.·
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
Chris Savage
Parallax Engineering
Post Edited (Chris Savage (Parallax)) : 5/20/2010 7:35:56 PM GMT
Buy GPS datalogger kit and LCD together.
Datalloger GPS comes with the Basic Stamp Super Carrier.
I have installed the LCD as follows.
Check out step by step the code and still not working.
[noparse][[/noparse]Parallax. Inc - www.Parallax.com]
If you cann't see the text, try to adjust the cotrast pot.
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
Chris Savage
Parallax Engineering
it was the problem had no connection with pin 0.
Thanks for the panciencia too am a novice level -1 and see for the first time I see my text on the LCD is AWESOME.