_LCD_BLINK_CURSOR_OFF

Post your requests and ideas on the future development of mikroBasic PRO for PIC.
Post Reply
Author
Message
Kalain
Posts: 1093
Joined: 11 Mar 2005 18:26
Location: Aubenas, France

_LCD_BLINK_CURSOR_OFF

#1 Post by Kalain » 04 Apr 2010 18:12

Hi,

It would be nice to add and mention in Lcd Library help file this (missing) command : _LCD_BLINK_CURSOR_OFF which is equal at 13.

Code: Select all

lcd_cmd(13)  '_LCD_BLINK_CURSOR_OFF
or a better understandable code like this one

Code: Select all

Lcd_cmd(_LCD_BLINK_CURSOR_OFF)  'which would be equivalent at Lcd_cmd(13)
Alain

User avatar
tihomir.losic
mikroElektronika team
Posts: 2138
Joined: 02 Dec 2009 14:16
Location: Serbia
Contact:

Re: _LCD_BLINK_CURSOR_OFF

#2 Post by tihomir.losic » 08 Apr 2010 10:20

Hello,

Lcd Library

The mikroBasic PRO for PIC provides a library for communication with Lcds (with HD44780 compliant controllers) through the 4-bit interface.
Follow this link to see available LCD commands:
http://www.mikroe.com/esupport/index.ph ... 28#lcd_cmd

You can see that we have LCD command _LCD_CURSOR_OFF which turns off cursor.

Best regards,

Losic Tihomir
mikroElektronika [Support team]

Kalain
Posts: 1093
Joined: 11 Mar 2005 18:26
Location: Aubenas, France

Re: _LCD_BLINK_CURSOR_OFF

#3 Post by Kalain » 08 Apr 2010 18:10

tihomir.losic wrote: You can see that we have LCD command _LCD_CURSOR_OFF which turns off cursor.
Right but _LCD_CURSOR_OFF disable cursor (and also underline) but do not blink cursor without underline.

By now if you follow help file, there is no way to display "blinking cursor without cursor" which is equivalent at _LCD_BLINK_CURSOR_OFF
This is what lcd_cmd(13) do but not documented in MB neither available through Code assistant!!!

Regards
Alain

Kalain
Posts: 1093
Joined: 11 Mar 2005 18:26
Location: Aubenas, France

Re: _LCD_BLINK_CURSOR_OFF

#4 Post by Kalain » 16 May 2010 17:30

tihomir.losic wrote: You can see that we have LCD command _LCD_CURSOR_OFF which turns off cursor.
mmh, still missing in V3.80.

Here is a screen shot about HD44780 from Hitachi.
(http://www.sparkfun.com/datasheets/LCD/HD44780.pdf)
Capture16-05-10-18.00.21.jpg
Capture16-05-10-18.00.21.jpg (49.82 KiB) Viewed 6283 times
What it say (in decimal) :
- 12 : LCD TURN ON
- 13 : CURSOR OFF and blinking of cursor position character
- 14 : Cursor ON and no blinking cursor position character
- 15 : Cursor ON and blinking of cursor position character

But in MB3.80, Code assistant list do not mention the 13 decimal possibility.
Alain

User avatar
anikolic
mikroElektronika team
Posts: 1775
Joined: 17 Aug 2009 16:51
Location: Belgrade
Contact:

Re: _LCD_BLINK_CURSOR_OFF

#5 Post by anikolic » 17 May 2010 12:43

Hello Kalain,

I must admit that this is not implemented, but I will inform our developers of your enhancement suggestion.
However simple this is to implement, this is not among high-priority tasks right now, so I beg for more patience.

Best regards,
Aleksandar
Web Department Manager

Kalain
Posts: 1093
Joined: 11 Mar 2005 18:26
Location: Aubenas, France

Re: _LCD_BLINK_CURSOR_OFF

#6 Post by Kalain » 17 May 2010 12:58

aleksandar.nikolic wrote:Hello Kalain,

I must admit that this is not implemented, but I will inform our developers of your enhancement suggestion.
However simple this is to implement, this is not among high-priority tasks right now, so I beg for more patience.

Best regards,
Aleksandar
No worries.
This is not only for me because now I know how to blink cursor without underline (Lcd_cmd(13)).
This is more to improve MB compiler for others users. :wink:

Just wanted to be sure that you got what I wanted to point.
Alain

User avatar
mileta.miletic
mikroElektronika team
Posts: 493
Joined: 05 Jun 2009 14:46
Location: Belgrade, Serbia
Contact:

Re: _LCD_BLINK_CURSOR_OFF

#7 Post by mileta.miletic » 18 May 2010 13:33

Hi,

Thank you for your feedback. We are intending to include more descriptive constants:

Code: Select all

_LCD_CURSOR_ON_BLINK_OFF = 14;
_LCD_CURSOR_ON_BLINK_ON = 15;
_LCD_CURSOR_OFF_BLINK_OFF = 12;
_LCD_CURSOR_OFF_BLINK_ON = 13;
In this way is clearer when cursor and blinking of cursor position is on/off.
Regards,
Mileta

Kalain
Posts: 1093
Joined: 11 Mar 2005 18:26
Location: Aubenas, France

Re: _LCD_BLINK_CURSOR_OFF

#8 Post by Kalain » 08 Oct 2014 19:08

Hi,

I have a small project with 2*16 LCD and wanted to use _LCD_Blink_cursor_off but couldn't find this instruction in MB6.40. (which is four years ater!!)

I remembered that I posted something here.

Hey, Mikroe team, hurry up!
Alain

Post Reply

Return to “mikroBasic PRO for PIC Wish List”