У нас вы можете посмотреть бесплатно PIC16F877A/PIC16F887/PIC16/18F*** interface CH340 USB to TTL device или скачать в максимальном доступном качестве, видео которое было загружено на ютуб. Для загрузки выберите вариант из формы ниже:
Если кнопки скачивания не
загрузились
НАЖМИТЕ ЗДЕСЬ или обновите страницу
Если возникают проблемы со скачиванием видео, пожалуйста напишите в поддержку по адресу внизу
страницы.
Спасибо за использование сервиса ClipSaver.ru
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 folks, This video is about how to interface a PIC wih CH340 device to interface with a computer or any other device using USB port. If there is any problem feel free to comment: Guys here is a link to remastered version of this video tutorial: • Full duplex communication between PC/... Here is the code: char rec1; void main() { TRISB.B7=0; TRISB.B6=0; UART1_INIT(1200); DELAY_MS(400); PORTB.B7=0; PORTB.B6=0; while(1) { if (UART1_Data_Ready() == 1) { rec1 = UART1_Read(); DELAY_MS(200); } if ( rec1 == '1') { PORTB.B7=1; DELAY_MS(800); PORTB.B7=0; rec1 = '0'; } else if ( rec1 == '2') { PORTB.B7=1; PORTB.B6=1; DELAY_MS(800); PORTB.B7=0; PORTB.B6=0; rec1 = '0'; } else { PORTB.B7=0; PORTB.B6=0; rec1 = '0'; } } }