Logo video2dn
  • Сохранить видео с ютуба
  • Категории
    • Музыка
    • Кино и Анимация
    • Автомобили
    • Животные
    • Спорт
    • Путешествия
    • Игры
    • Люди и Блоги
    • Юмор
    • Развлечения
    • Новости и Политика
    • Howto и Стиль
    • Diy своими руками
    • Образование
    • Наука и Технологии
    • Некоммерческие Организации
  • О сайте

Скачать или смотреть PIC16F877A interface LM35 temperature sensor project tutorial using MikroC code & Proteus demo.

  • Learning Microcontrollers
  • 2022-10-09
  • 4237
PIC16F877A interface LM35 temperature sensor project tutorial using MikroC code & Proteus demo.
  • ok logo

Скачать PIC16F877A interface LM35 temperature sensor project tutorial using MikroC code & Proteus demo. бесплатно в качестве 4к (2к / 1080p)

У нас вы можете скачать бесплатно PIC16F877A interface LM35 temperature sensor project tutorial using MikroC code & Proteus demo. или посмотреть видео с ютуба в максимальном доступном качестве.

Для скачивания выберите вариант из формы ниже:

  • Информация по загрузке:

Cкачать музыку PIC16F877A interface LM35 temperature sensor project tutorial using MikroC code & Proteus demo. бесплатно в формате MP3:

Если иконки загрузки не отобразились, ПОЖАЛУЙСТА, НАЖМИТЕ ЗДЕСЬ или обновите страницу
Если у вас возникли трудности с загрузкой, пожалуйста, свяжитесь с нами по контактам, указанным в нижней части страницы.
Спасибо за использование сервиса video2dn.com

Описание к видео PIC16F877A interface LM35 temperature sensor project tutorial using MikroC code & Proteus demo.

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,
This tutorial is about how to interface an LM35 sensor with a PIC16F877A microcontroller and it displays output on a 16x2 LCD. Demonstration is on proteus software.

Become a Patreon and support my channel using link below:
https://patreon.com/user?u=81261678

How to setup PIC hardware video link:
   • Setting up a PIC16F877A/PIC16F887/PIC18F****  

How to setup Lm016 16x2 LCD video link:
   • PIC16F877A interface Lm016 16x2 JHD LCD. U...  

Code of current video is as under:

// 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 temp;
char temp1[6];
float celcius;

void main() {
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)
{
temp = ADC_read(0);
Delay_ms(50);

celcius = ((temp * 5.0)/1024) * 100;
Delay_ms(50);

floattostr( celcius , temp1 );
Delay_ms(50);

LCD_OUT(1,1, "Temp = " );
LCD_OUT(1,9, temp1);
LCD_OUT(1,16, "C");
Delay_ms(100);



}
}

Комментарии

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

Похожие видео

  • О нас
  • Контакты
  • Отказ от ответственности - Disclaimer
  • Условия использования сайта - TOS
  • Политика конфиденциальности

video2dn Copyright © 2023 - 2025

Контакты для правообладателей [email protected]