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] problem of displaying numbers in Lcd display

Status
Not open for further replies.

PRABAKARDEVA

Full Member level 2
Joined
Sep 16, 2013
Messages
127
Helped
2
Reputation
4
Reaction score
2
Trophy points
1,298
Location
Chennai
Activity points
2,168
hello guys,

I am using pic 16F877A.
i didn't know that how to display the numbers orderly or whatever,when i presses keys in matrix keypad...
 

Hi

Is it with the code or the hardware interface you are stuck with?

Regards
 

if you work in C you can use sprintf() in <stdio.h> to convert numeric data to a text string which can then be written to an LCD display, e.g.
Code:
    char text[20]={0};
   sprintf(text,"%s board V%d.%d", SYSTEM, VERSION, SUBVERSION);									
   lcdStringAtCursor(text);
 
  • Like
Reactions: tux1

    tux1

    Points: 2
    Helpful Answer Positive Rating
I had seen the slow response and low quality in display color 1024 x 480 pixels, so try make clear with you code in some project .
 

Hi

Is it with the code or the hardware interface you are stuck with?

Regards

i think that stuck with the code not hardware..


thanks in advance

- - - Updated - - -

Do you work with assembly code for interface ?

I am working with embedded c in MplabX IDE
 

Sometime , we work with low quality eqipment , the good mathematical model must be use , PCA , neural network , Fuzzy Logic , Genetics Algorithm ... etc.
 

Did you connect a 1k resistor at the terminal of each row?
 

Status
Not open for further replies.

Similar threads

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top