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

Скачать или смотреть The 8051 Microcontroller & Embedded Systems

  • Radioactive Engineer
  • 2025-05-19
  • 135
The 8051 Microcontroller & Embedded Systems
  • ok logo

Скачать The 8051 Microcontroller & Embedded Systems бесплатно в качестве 4к (2к / 1080p)

У нас вы можете скачать бесплатно The 8051 Microcontroller & Embedded Systems или посмотреть видео с ютуба в максимальном доступном качестве.

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

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

Cкачать музыку The 8051 Microcontroller & Embedded Systems бесплатно в формате MP3:

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

Описание к видео The 8051 Microcontroller & Embedded Systems

🚀 Learn how to bring your 8051 projects to life with LCD displays! In this hands-on livestream, we’ll explore how to connect and control a 16x2 LCD using the 8051 microcontroller. From sending simple text to understanding control commands, this session will guide you step-by-step through it all.

💡 What you’ll learn:
✅ Basics of 16x2 alphanumeric LCDs
✅ LCD pinout and connection with 8051
✅ Command vs data instructions
✅ Timing requirements and delays
✅ Writing custom messages to the LCD
✅ Assembly/C live coding demo
✅ Common issues and troubleshooting tips

🔧 Requirements (Optional):

8051 (AT89C51) Development Board

16x2 LCD module

Keil uVision or MPLAB + Proteus/hardware setup

📢 Like, share, and subscribe for more embedded systems tutorials and livestreams!

🔔 Buzzer Control with 8051 – Live Session Description:
🚨 Make some noise with the 8051! Join this live session to learn how to interface and control buzzers using the AT89C51 microcontroller. We'll cover both active and passive buzzers, and show how to generate sound alerts in response to system inputs.

💡 What you’ll learn:
✅ Types of buzzers: active vs passive
✅ How to connect buzzers safely to microcontroller ports
✅ Generating tones using delays and toggling
✅ Using buzzers for system feedback (e.g., button press, alerts)
✅ Live demo: Beep on button press
✅ Power and protection tips

🔧 Requirements (Optional):

AT89C51 or compatible 8051 board

Active/passive buzzer module

Keil uVision + Proteus or hardware setup

📢 Don’t forget to like and subscribe for more live embedded sessions!


asm program:
ORG 0H
MOV A,#38H ;init. LCD 2 lines,5x7 matrix
ACALL COMNWRT ;call command subroutine
ACALL DELAY ;give LCD some time
MOV A,#0EH ;display on, cursor on
ACALL COMNWRT ;call command subroutine
ACALL DELAY ;give LCD some time
MOV A,#01 ;clear LCD
ACALL COMNWRT ;call command subroutine
ACALL DELAY ;give LCD some time
MOV A,#06H ;shift cursor right
ACALL COMNWRT ;call command subroutine
ACALL DELAY ;give LCD some time
MOV A,#84H ;cursor at line 1,pos. 4
ACALL COMNWRT ;call command subroutine
ACALL DELAY ;give LCD some time
MOV A,#'N' ;display letter N
ACALL DATAWRT ;call display subroutine
ACALL DELAY ;give LCD some time
MOV A,#'O' ;display letter O
ACALL DATAWRT ;call display subroutine
AGAIN: SJMP AGAIN ;stay here
COMNWRT: ;send command to LCD
MOV P1,A ;copy reg A to port1
CLR P2.2 ;RS=0 for command
CLR P2.1 ;R/W=0 for write
SETB P2.0 ;E=1 for high pulse
ACALL DELAY ;give LCD some time
CLR P2.0 ;E=0 for H-to-L pulse
RET
DATAWRT: ;write data to LCD
MOV P1,A ;copy reg A to port1
SETB P2.2 ;RS=1 for data
CLR P2.1 ;R/W=0 for write
SETB P2.0 ;E=1 for high pulse
ACALL DELAY ;give LCD some time
CLR P2.0 ;E=0 for H-to-L pulse
RET
DELAY: MOV R3,#50 ;50 or higher for fast CPUs
HERE2: MOV R4,#255 ;R4=255
HERE: DJNZ R4,HERE ;stay until R4 becomes 0
DJNZ R3,HERE2
RET
END

Комментарии

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

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

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

video2dn Copyright © 2023 - 2025

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