Copy a Program from 1 PIC16F877A microcontroller to another PIC16F877A microcontroller. Tutorial.

Описание к видео Copy a Program from 1 PIC16F877A microcontroller to another PIC16F877A microcontroller. Tutorial.

Hello guys,
Welcome to Learning Microcontrollers youtube Channel,

Guys I have also compiled course on Udemy as well. Where you will learn under my direct supervision in a more supervised way.
Here is the links to the courses I have on Udemy, By taking any of these courses you will be supporting my channel aswell.
This will help me to make more videos with better hardware in the future. I hope you look forward to it.
Courses Links:

1- https://www.udemy.com/course/pic16f87...
2- https://www.udemy.com/course/mikroc-f...
3- https://www.udemy.com/course/mikroc-f...
4- https://www.udemy.com/course/pic-micr...
5- https://www.udemy.com/course/learn-ar... ///////////////////////////////////////////////////// Hello guys,
PIC microcontrollers are used in various applications. So in many machinary there is a code burnt in the microcontroller but you dont have its back up. To make a back up of that code you use the technique mentioned in this video.

Become a Patreon and support my channel using link below:
https://patreon.com/user?u=81261678

The link to google drive to download PIC Kit 3 programmer software is :
https://drive.google.com/file/d/1h8sK...

Link to setting up pic microcontroller board video is:
   • Setting up a PIC16F877A/PIC16F887/PIC...  

MikroC coding of this video is :

void main() {
TRISC.F3 = 0;
PORTC.F3 = 0;
Delay_ms(50);

TRISD.F0 = 0;
PORTD.F0 = 0;
Delay_ms(50);

TRISD.F1 = 0;
PORTD.F1 = 0;
Delay_ms(50);

while(1)
{
PORTC.F3 = 1;
PORTD.F0 = 0;
PORTD.F1 = 0;
Delay_ms(500);
PORTC.F3 = 0;
PORTD.F0 = 1;
PORTD.F1 = 0;
Delay_ms(500);

PORTC.F3 = 0;
PORTD.F0 = 0;
PORTD.F1 = 1;
Delay_ms(500);

}
}

Комментарии

Информация по комментариям в разработке