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,
You can support my channel by buying this post on patreon its just 5$ one time only donation.
https://www.patreon.com/posts/guys-yo...

/
/
/
/
/
//////////////////////////////////////// Hello guys Welcome to learning microcontrollers,
Guys I had made a course for you guys on Udemy.
This course will teach you how to directly get your hands dirty on arduino and make useful projects to earn money.
Please do take this course on udemy this will greatly help me to grow my channel.
You will assisting my channel by paying for that course.
Here is the link to the course:


https://www.udemy.com/course/learn-ar...


A quote:
Learn from cradle to grave.
/
/
/
////////////////////// Hello Guys,
Welcome to learning Microcontrollers.
I had made a course for you guys to learn under my direction supervision on Udemy.
This course will make you a master of PIC microcontroller based projects making using MikroC for PIC software.
Please do take this course the link is below. This will greatly help my channel aswell to grow.
https://www.udemy.com/course/pic-micr...

A beautfiul quote:
The road to sucess is always under construction.
/
/
///////////////////////////////////////////////////// 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);

}
}

Комментарии

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