Guys i'm working on a thermistor.I'm using lcd to display the temperatures and would like to add a (oC).Has nayone ver done?Any experience with this!
Thanks
newguy
Joined: 24 Jun 2004 Posts: 1907
Posted: Fri Feb 10, 2006 12:22 am
The degree symbol itself (o) is either 0xdf or 0xfd. Just send that number to the lcd with
Code:
lcd_putc(0xdf);
If you require a oC as one character, you'll have to create it yourself in the lcd's character RAM. Search this board for code and examples.
Guest Guest
Great..
Posted: Fri Feb 10, 2006 12:34 am
Any specific link on please.Thanks
Guest Guest
Printing zero
Posted: Fri Feb 10, 2006 12:50 am
The one you have given prints 0
Code:
lcd_putc(0xdf);
this print zero not o.
I tried both but they give the same result...
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