View previous topic :: View next topic |
Author |
Message |
aruna1
Joined: 14 Oct 2008 Posts: 103
|
flex lcd 16x2 question |
Posted: Sat Jun 18, 2011 3:09 am |
|
|
I'm using flex lcd 16x2 driver in my project. is it possible to use this driver to make a certain character blink or highlight?. |
|
|
temtronic
Joined: 01 Jul 2010 Posts: 9225 Location: Greensville,Ontario
|
|
Posted: Sat Jun 18, 2011 5:11 am |
|
|
Those features are a dependent on the LCD you have,not the driver.Consult the datasheet for your LCD.If it lists them there will be a 'command' or 'control' sequence to enable/disable those features. It is easy to add those commands into the flex_lcd driver.Be sure to make a copy the original driver,naming it 'myLCDdriver' or similar and modify that NOt the original driver! |
|
|
aruna1
Joined: 14 Oct 2008 Posts: 103
|
|
Posted: Sat Jun 18, 2011 5:32 am |
|
|
temtronic wrote: | Those features are a dependent on the LCD you have,not the driver.Consult the datasheet for your LCD.If it lists them there will be a 'command' or 'control' sequence to enable/disable those features. It is easy to add those commands into the flex_lcd driver.Be sure to make a copy the original driver,naming it 'myLCDdriver' or similar and modify that NOt the original driver! |
I see.
this is the datasheet of the LCD
http://www.e-gizmo.com/PRODUCT/ELECTRO/Datasheet/Display/JHD162A%20SERIES.pdf
I couldnt find anything like that. can you please give it a look |
|
|
PCM programmer
Joined: 06 Sep 2003 Posts: 21708
|
|
|
temtronic
Joined: 01 Jul 2010 Posts: 9225 Location: Greensville,Ontario
|
|
Posted: Sat Jun 18, 2011 12:51 pm |
|
|
I'm not impressed
That datasheet is terrible ! All the 'good' details are missing.
Seems to be dased on the KS0066 LCD module...
You should google 'ks0066 LCD' and see if you can find a COMPLETE data sheet with ALL the commands and functions. |
|
|
aruna1
Joined: 14 Oct 2008 Posts: 103
|
|
Posted: Sat Jun 18, 2011 9:12 pm |
|
|
Thank you. Is it possible to use this to blink any character already displayed in LCD to blink? even character in middle of a word? |
|
|
aruna1
Joined: 14 Oct 2008 Posts: 103
|
|
Posted: Sat Jun 18, 2011 9:12 pm |
|
|
temtronic wrote: | I'm not impressed
That datasheet is terrible ! All the 'good' details are missing.
Seems to be dased on the KS0066 LCD module...
You should google 'ks0066 LCD' and see if you can find a COMPLETE data sheet with ALL the commands and functions. |
Thanks I'll try that datasheet |
|
|
PCM programmer
Joined: 06 Sep 2003 Posts: 21708
|
|
Posted: Sat Jun 18, 2011 9:29 pm |
|
|
You could re-position the cursor, using the lcd_gotoxy() function.
Then enable blinking using the function in the previously posted link.
To do it without using the above method takes a special lcd driver
which is written for that purpose. |
|
|
aruna1
Joined: 14 Oct 2008 Posts: 103
|
|
Posted: Sat Jun 18, 2011 9:57 pm |
|
|
PCM programmer wrote: | You could re-position the cursor, using the lcd_gotoxy() function.
Then enable blinking using the function in the previously posted link.
To do it without using the above method takes a special lcd driver
which is written for that purpose. |
coooool thanks |
|
|
|