Из-за периодической блокировки нашего сайта РКН сервисами, просим воспользоваться резервным адресом:
Загрузить через dTub.ru Загрузить через ClipSaver.ruУ нас вы можете посмотреть бесплатно Copy a Program from 1 PIC16F877A microcontroller to another PIC16F877A microcontroller. Tutorial. или скачать в максимальном доступном качестве, которое было загружено на ютуб. Для скачивания выберите вариант из формы ниже:
Роботам не доступно скачивание файлов. Если вы считаете что это ошибочное сообщение - попробуйте зайти на сайт через браузер google chrome или mozilla firefox. Если сообщение не исчезает - напишите о проблеме в обратную связь. Спасибо.
Если кнопки скачивания не
загрузились
НАЖМИТЕ ЗДЕСЬ или обновите страницу
Если возникают проблемы со скачиванием, пожалуйста напишите в поддержку по адресу внизу
страницы.
Спасибо за использование сервиса savevideohd.ru
Hello Guys, Welcome to learning microcontrollers, Guys I have been making lectures on electronics and embedded system since 2019 for free for everyone on youtube. My videos are based on powerpoint presentations for the viewers for easy understanding of the circuit. Now you guys have a chance to support my channel by buying these presentations. The file contains over 180 project presentations. This will allow me to buy new sensor and modules to make new and better videos for you guys. Names of the patreons will be in my next video. Link to patreon page: https://www.patreon.com/user/shop/ove... /////////////////////////////////////////////////////**********************************///////////////////////////////// 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/PIC18F**** 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); } }