Русские видео

Сейчас в тренде

Иностранные видео


Скачать с ютуб PIC16F877A interface TV remote using IR receiver LED for LEDs blinking. Uses MikroC for PIC coding. в хорошем качестве

PIC16F877A interface TV remote using IR receiver LED for LEDs blinking. Uses MikroC for PIC coding. 2 года назад


Если кнопки скачивания не загрузились НАЖМИТЕ ЗДЕСЬ или обновите страницу
Если возникают проблемы со скачиванием, пожалуйста напишите в поддержку по адресу внизу страницы.
Спасибо за использование сервиса savevideohd.ru



PIC16F877A interface TV remote using IR receiver LED for LEDs blinking. Uses MikroC for PIC coding.

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, This video is about how to use and TV remote to interface with a PIC16F877A microcontroller. It teaches how to program the PIC using MikroC for PIC compiler to read IR receiver LED values using PIC's ADC pins and how to use it to turn on off LED and later to derive different applications like turning on and off motors, lights etc. Become a Patreon and support my channel using link below: https://patreon.com/user?u=81261678 NOTE: Youtube dont allow writing greater then and lesser then mathematical symbols in the description so for the code below greater then is replace by GT and lesser then by LT. Here is the code: // Lcd pinout settings sbit LCD_RS at RC0_bit; sbit LCD_EN at RC1_bit; sbit LCD_D7 at RD1_bit; sbit LCD_D6 at RD0_bit; sbit LCD_D5 at RC3_bit; sbit LCD_D4 at RC2_bit; // Pin direction sbit LCD_RS_Direction at TRISC0_bit; sbit LCD_EN_Direction at TRISC1_bit; sbit LCD_D7_Direction at TRISD1_bit; sbit LCD_D6_Direction at TRISD0_bit; sbit LCD_D5_Direction at TRISC3_bit; sbit LCD_D4_Direction at TRISC2_bit; float read1; char read11[6]; void main() { TRISB.F7 = 0; TRISB.F6 = 0; TRISB.F5 = 0; Delay_ms(100); PORTB = 0x00; Delay_ms(100); LCD_init(); Delay_ms(500); ADC_init(); Delay_ms(500); Lcd_Cmd(_LCD_CURSOR_OFF); Delay_ms(100); Lcd_Cmd(_LCD_CLEAR); Delay_ms(100); while(1) { read1 = ADC_read(0); Delay_ms(50); if( read1 GT 5 ) { PORTB.F7 = 1; PORTB.F6 = 1; PORTB.F5 = 1; Delay_ms(200); floattostr(read1,read11); Delay_ms(50); LCD_OUT(1,1,read11); Delay_ms(50); } else { PORTB = 0x00; } } }

Comments