LCD Display Questions
piguy101
Posts: 248
I am planning on buying this LCD display, but before I do, I have three questions.
http://www.parallax.com/StoreSearchResults/tabid/768/txtSearch/lcd/List/0/SortField/4/ProductID/50/Default.aspx
The LCD display comes in three Baud Rates, I would like to know how fast the BS2 can send characters in the three rates. i.e. How many characters per second can it send?
On the data sheet of the display it appears you can use the SEROUT command and directly send characters by typing them, not just by using the special hex codes for letters. Is this correct?
Say I have a changing variable and I want to send it to the LCD every second, how do I do this?
http://www.parallax.com/StoreSearchResults/tabid/768/txtSearch/lcd/List/0/SortField/4/ProductID/50/Default.aspx
The LCD display comes in three Baud Rates, I would like to know how fast the BS2 can send characters in the three rates. i.e. How many characters per second can it send?
On the data sheet of the display it appears you can use the SEROUT command and directly send characters by typing them, not just by using the special hex codes for letters. Is this correct?
Say I have a changing variable and I want to send it to the LCD every second, how do I do this?
Comments
What do you mean by "typing them"? If you want to embed constant strings in your program to display on the LCD, sure. The chapter in the Stamp Manual on the SEROUT statement gives examples of this.
You will need a SEROUT statement that selects a row and column on the display and outputs the variable value (using the DECn formatter ... See the Stamp Manual for details). Then you have to execute this SEROUT each time a second goes by or each time the variable value changes. It depends on your program and what you're trying to do.