Maker Pro

Recent content by saneeshforu

  1. S

    Pic 16f877a anlog input error

    Thanks for your consideration ..and time ..Now it is working well
  2. S

    Pic 16f877a anlog input error

    okkk sir Its now working,,
  3. S

    Pic 16f877a anlog input error

    Haii all .. I have a doubt with analog inputs in pic16f877a....I have designed a temperature indicator using lm35 and pic 16f877a(AN0 pin used) it is working well also. I found a scenario that when we connect any of other analog inputs (AN1 to AN7) to VCC then the temperature reading increasing...
  4. S

    PIC Multiple Timer Interrupt Problem

    thanks for your consideration and time ...actually i forget to use TMR1ON in TCON reg..now it is working
  5. S

    PIC Multiple Timer Interrupt Problem

    Haii all I have a problem related with Microc PIC IDE (v8.2) I have 2 timer interrupts(tmr2,tmr1) in my program..like this.. void interrupt(){ if (PIR1.TMR1IF) { PIR1.TMR1IF=0; cnt++ ; TMR1H = 0x80; TMR1L = 0x00; } else if(PIR1.TMR2IF) { PIR1.TMR2IF=0; cnt2++ ...
Top