MARWEN007
Junior Member level 2
- Joined
- Apr 16, 2011
- Messages
- 24
- Helped
- 0
- Reputation
- 0
- Reaction score
- 0
- Trophy points
- 1,281
- Activity points
- 1,481
hi to all I have to calculate numerical analog conversion with 16f873A entry A0 and A1 from 0 to 5v my program has a problem when 0 to 1V it gives false value of the ADC. there's there anyone who can help me? Fos=20
Code:
sbit LCD_RS at RB0_bit;
sbit LCD_EN at RB1_bit;
sbit LCD_D4 at RB2_bit;
sbit LCD_D5 at RB3_bit;
sbit LCD_D6 at RB4_bit;
sbit LCD_D7 at RB5_bit;
sbit LCD_RS_Direction at TRISB0_bit;
sbit LCD_EN_Direction at TRISB1_bit;
sbit LCD_D4_Direction at TRISB2_bit;
sbit LCD_D5_Direction at TRISB3_bit;
sbit LCD_D6_Direction at TRISB4_bit;
sbit LCD_D7_Direction at TRISB5_bit;
char txt[] = "lecture tension";
char chVAL[16];
float val=0;
unsigned int adcvalue,U;
void main(){
ADCON1 = 0x82;
Lcd_Init(); // Initialize LCD
Lcd_Cmd(_LCD_CLEAR); // Clear display
Lcd_Cmd(_LCD_CURSOR_OFF); // Cursor off
Lcd_Out(1,1,txt); // Write text in first row
Delay_ms(700);
Lcd_Cmd(_LCD_CLEAR); // Clear display
Lcd_Out(1,1,"U1="); // Write text in first row
Lcd_Out(2,1,"U2=");
do
{
VAL=Adc_Read(0);
floattostr(VAL*0.00489,chVAL);
Lcd_Out(1,13,chVAL);
VAL=Adc_Read(1);
floattostr(VAL*0.00489,chVAL);
Lcd_Out(2,13,chVAL);
Delay_ms(200);
} while(1);
}