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.

Blinking of Character instead of blinking cursor in Msp430F5438

Status
Not open for further replies.

Jeetesh Tiwari

Newbie level 3
Newbie level 3
Joined
Dec 23, 2014
Messages
3
Helped
0
Reputation
0
Reaction score
0
Trophy points
1
Visit site
Activity points
22
Hi

I had done the normal interfacing of LCD16x2 with MSP430F5438,.. But now I want to blink character instead of blinking cursor, It means that the character at cursor position should blink at every 200ms...
 

Try just switching your character and the space with the delay between for example
Code:
    lcd_cmd(0xc0)
    lcd_data('a');
    delay(100);
    lcd_data(' ');
    delay(100);

i think this will do what you are looking
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top