CCS C Software and Maintenance Offers
FAQFAQ   FAQForum Help   FAQOfficial CCS Support   SearchSearch  RegisterRegister 

ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

CCS does not monitor this forum on a regular basis.

Please do not post bug reports on this forum. Send them to support@ccsinfo.com

LCD clear!!

 
Post new topic   Reply to topic    CCS Forum Index -> General CCS C Discussion
View previous topic :: View next topic  
Author Message
ProgrammerHoby
Guest







LCD clear!!
PostPosted: Sat Feb 11, 2006 10:22 pm     Reply with quote

Is there a way or a function to clear a line of the lcd.for example if you want to clear line 1 or line 2.
Code:
lcd_putc(clear_line1 or clear_line2)?
instead of clearing the entire lcd display!!! Shocked
Guest








PostPosted: Sat Feb 11, 2006 11:01 pm     Reply with quote

Why not print a blank line?
ProgrammerHoby
Guest







How do you do that
PostPosted: Sat Feb 11, 2006 11:09 pm     Reply with quote

How do you print a blank line on the lcd? Question
Ttelmah
Guest







PostPosted: Sun Feb 12, 2006 3:28 am     Reply with quote

Er. lcd_putc(" ");
Use as many spaces as you want.
However you can also be 'sneaky'. Suppose you have a message like:

"The value is : 29.3".

You can clear the screen at the beginning, and print the text:

"The value is :"

Then for the display, use lcd_gotoxy, to place your new 'writing' point, where you want the number to be (just after the ':' here), print (say) ten spaces, then use lcd_gotoxy again to go back to the same point where the number wants to go, and print the number. Repeat this as the number updates. This way only the part of the display that you want to update, has to change, giving 'cleaner' displays.
Writing (say), ten spaces, and then the required number into the same area, only takes typically 50uSec for each 'goto', and a few uSec each for the character writes.

Best Wishes
Display posts from previous:   
Post new topic   Reply to topic    CCS Forum Index -> General CCS C Discussion All times are GMT - 6 Hours
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum


Powered by phpBB © 2001, 2005 phpBB Group