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.

ADC value conversion with PIC16F876A and seven segment multiplexing

Status
Not open for further replies.
Brother Idon't know MikroC but nowdays I am learning,can you tell me what you want to implement so,I can help you??

Hope it helps.
 

@sahu

Please attach the Proteus file and the complete mikroC project files zipped so that a quick solution can be provided.

Edit: Anyways, here is the working file. Proteus file attached.

This is wrong.


Code C - [expand]
1
2
3
SSDVAL1 = CA_P_o[display[0]];
SSDVAL2 = CA_P_o[display[1]];
SSDVAL3 = CA_P_o[display[2]];



You should use


Code C - [expand]
1
2
3
SSDVAL1 = CA_P_o[0];
SSDVAL2 = CA_P_o[1];
SSDVAL3 = CA_P_o[2];

 

Attachments

  • CCS C SSD.rar
    92.3 KB · Views: 49
Last edited:

@sahu

Please attach the Proteus file and the complete mikroC project files zipped so that a quick solution can be provided.

Edit: Anyways, here is the working file. Proteus file attached.

thank u
dear sir , i have not Proteus Simulator. i have "Real Pic Simulator" only.


This is wrong.


Code C - [expand]
1
2
3
SSDVAL1 = CA_P_o[display[0]];
SSDVAL2 = CA_P_o[display[1]];
SSDVAL3 = CA_P_o[display[2]];



You should use


Code C - [expand]
1
2
3
SSDVAL1 = CA_P_o[0];
SSDVAL2 = CA_P_o[1];
SSDVAL3 = CA_P_o[2];


what's difference between ?
 

Hello,why am I measuring 30V but the LCD displays only 25V,how may I calculate the error and then that difference be cancelled by the new formula which can sho exactly 30V or nearby that value.

Thanks.!!
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top