yoannes
Junior Member level 1

Hi everyone,
I need some help. I am beginner with microcontrollers and had some problems..
I'm trying to make an simple code with PIC16F877A and mikroc to learn to use microcontrollers.
I want to set the AN5 as analog, but I can't do it, I tried to look for but couldn't find the answer. When all the ports were digital was fine, but now.. Could anyone help me please?
I just want to turn on the LEDs when input 2,5V on the RE0 for exemple
I need some help. I am beginner with microcontrollers and had some problems..
I'm trying to make an simple code with PIC16F877A and mikroc to learn to use microcontrollers.
I want to set the AN5 as analog, but I can't do it, I tried to look for but couldn't find the answer. When all the ports were digital was fine, but now.. Could anyone help me please?
I just want to turn on the LEDs when input 2,5V on the RE0 for exemple
Code:
unsigned asd;
void main() {
ADCON1 = 0x08;
TRISA = 0x00;
TRISB = 0x00;
TRISC = 0x00;
TRISD = 0x00;
TRISE = 0xFF;
while(1){
PORTB = 0x00;
PORTC = 0x00;
PORTD = 0x00;
asd = ADC_Read(5);
if(asd >= 200){
PORTB = 0xFF;
PORTC = 0xFF;
PORTD = 0xFF;
delay_ms(1000);
}
}
}