Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

[SOLVED] Running Banner or string On 16x2 lcd

Status
Not open for further replies.

Sudhp

Member level 4
Joined
Oct 11, 2013
Messages
69
Helped
0
Reputation
0
Reaction score
0
Trophy points
6
Location
India
Activity points
528
Hi Experts,

I want to know that "Is this possible to show a running banner on 16x2 lcd".

Is there any command which can make the string in moving condition as done in many platforms on bigger lcd's.
 

By running banner I assume you mean scrolling text? This can be done (I don't recall is this is a built in LCD function) but you can program this to scroll over. Basically you would load you text you want to scroll and start adding the letters one at a time while shifting the position to the left dragging the later with it.
 
  • Like
Reactions: Sudhp

    Sudhp

    Points: 2
    Helpful Answer Positive Rating
hello,


Do you want horizontal scrolling letter by letter ..very easy
or pixel by pixel ! a bit more complicated !
 

hello,

if you have a HD44780 compliant LCD
you can use the command Cursor or display shift
Shift step is one letter ..

with RS=0 RW=0
Data= 0001 S/C R/L x x
R=Right Cde=0x1C
L=LEFT Cde=0x18

MikroC include theses commands
Lcd8_Cmd(_LCD_SHIFT_LEFT);
Lcd8_Cmd(_LCD_SHIFT_RIGHT);
 

Thank all of u for reply....
@paulfjujo
Sir I have to scroll a word from right to left side of 1st line of lcd......
 

a word : any characteres ? or a word = an integer value ?

so, Now you have some the tools to do it...
Try and at First ,to Display a fixe message on LCD, and if successfull
try to shift the msg on display.
and show us some personnal work ...
 

Status
Not open for further replies.

Similar threads

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top