1. LED BLINKING USING PIC16F877A (Coding - MikroC and Simulation - Proteus)

Поделиться
HTML-код
  • Опубликовано: 12 сен 2024
  • This series is for PIC Microcontroller where you can learn the microcontroller PIC16F877A coding.
    In this video you will learn how to blink the led on port B.
    Coding software used is MikroC and Simulation Software is Proteus.
    You can ask any quer related to it and you can find the code on this link: drive.google.c...
    Welcome to #INVOOTECH. Subscribe This Channel For Technical support and Videos related to different microcontroller and microprocessor like 8085,8086,Arduino, PIC, AVR, ARM, Rasberry PI, etc.
    Tutorials on softwares like Matlab, C/C++, Android, PCB designing software (Eagle CAD and ExpressPCB), Pvsyst.
    Get to learn different technologies like IOT, Solar Energy, Autobots,etc in one place.
    School and College level projects are also assisted!!
    Contact Us For Technical Support:
    mail us at------- invootech@gmail.com
    Follow us on social media:
    Like The Facebook : / invootech
    Follow On Google + : www.google.com...
    Our Blog : invootech.blog...

Комментарии • 29

  • @ahmedbadry4417
    @ahmedbadry4417 2 года назад +1

    this video is good and you are explaining in good way.
    Thank you very much

  • @ayah3672
    @ayah3672 2 года назад +1

    best explanation ever!!!

  • @medilyesoudhini7411
    @medilyesoudhini7411 4 года назад +2

    you are a life saver thanks

  • @kunalsirpor67
    @kunalsirpor67 3 года назад +1

    Thanks man, you solved my assignment.

    • @farahsyafiqa8286
      @farahsyafiqa8286 3 года назад

      Hello can u give me your assignment? Help me 🥺

  • @mrsteve7521
    @mrsteve7521 Год назад +1

    Thank you a lot 👏

  • @jaylton_alencar
    @jaylton_alencar 2 года назад +1

    Great video

  • @kamaleshand6459
    @kamaleshand6459 2 года назад +1

    very helpful video

  • @le_dr3677
    @le_dr3677 3 года назад +1

    well explained bravo

  • @user-xb5zu6zu7j
    @user-xb5zu6zu7j 3 года назад +1

    helped, thank you

  • @Maham899
    @Maham899 3 года назад +1

    Thanks a lot

  • @orimusic9707
    @orimusic9707 3 года назад +1

    great video

  • @shaheryarmehmood9958
    @shaheryarmehmood9958 3 года назад +1

    superb

  • @nandlalchoudhary2579
    @nandlalchoudhary2579 4 года назад +1

    sir which programming language are you using weather it c,c++ or any other

  • @josealfredo6287
    @josealfredo6287 3 года назад

    Is the same connection with the pic 16f84a?

  • @ravina05
    @ravina05 3 года назад +1

    Why to add crystal oscillator externally?

    • @INVOOTECH
      @INVOOTECH  3 года назад +1

      internal oscillator do not provide that precision and so adding an external oscillator is always advisable. You can read more details for the internal oscillator on the ic datasheet.

  • @rochdimaria
    @rochdimaria 2 года назад +1

    Hello sir how you chose or calculate the capacitance values ?

    • @INVOOTECH
      @INVOOTECH  2 года назад +1

      A crystal’s frequency is specified for load capacitance CL. If the actual capacitance is too high, the crystal will oscillate more slowly. If the capacitance is too low, it will oscillate faster. Note that while crystal datasheets specify frequency variation as 1) initial accuracy, 2) stability (primarily across temperature) and 3) aging, none of these account for frequency variation caused by incorrect load capacitance on the board.
      If alternate crystals are specified for a board, all alternates should have the same CL spec.
      The following equation shows the relationship between the board capacitors C1 and C2, and the CL spec of the crystal.
      CL = (C1 * C2) / (C1 + C2) + Cstray
      Stray capacitance Cstray comes from the pins of the chip and parasitics from the board. It is often approximated as 5pF.
      Assuming the same value is used for C1 and C2, the equation can be rewritten as:
      C1 = C2 = 2 * (CL - Cstray)
      Here C1 and C2 Are connected to Crystal Oscillator

    • @rochdimaria
      @rochdimaria 2 года назад

      @@INVOOTECH thank you so much

  • @asanhikmat1855
    @asanhikmat1855 2 года назад

    please more video on this pic 16f877a project

  • @subhashedna2011
    @subhashedna2011 3 года назад

    Kindly send me the link for Proteus software and code software

  • @wakbekabale9803
    @wakbekabale9803 Год назад

    can we use on vs code please

  • @nurha5000
    @nurha5000 3 года назад

    how to run coding in mplab from micro C??

  • @farahsyafiqa8286
    @farahsyafiqa8286 3 года назад

    My led not on . I dont know why .. help

  • @Hhhhhhhhhhh6115
    @Hhhhhhhhhhh6115 3 года назад

    void main(){
    trisb=0x00;
    trisa=0xFF;
    while(1){
    if(porta.f0==1){
    portb.f0=1;
    delay_ms(2000);
    portb.f0=0;
    portb.f1=1;
    }
    }
    }
    Q:I want to stop portb.f0 competely after 2 seconds although the switch on .How?
    Thank you