VanHauser
Joined: 03 Oct 2005 Posts: 88 Location: Ploiesti, Romania
|
Set cursor blinking and/or visibility on LCD |
Posted: Fri Oct 07, 2005 1:36 pm |
|
|
Add this tiny function to the lcd.c driver:
Code: |
void lcd_setcursor_vb(short visible, short blink)
{
lcd_send_byte(0, 0xC|(visible<<1)|blink);
}
|
|
|