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

Learning Microcontrollers
Learning Microcontrollers
12.6 هزار بار بازدید - پارسال - Hello guys,      
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);

}
}
پارسال در تاریخ 1402/03/24 منتشر شده است.
12,650 بـار بازدید شده
... بیشتر