Design and Implementation of an Electronic Clock Based on the 51 Microcontroller (Including Alarm Functionality)

Design and Implementation of an Electronic Clock Based on the 51 Microcontroller (Including Alarm Functionality)

Abstract This article provides a detailed introduction to a design scheme for an electronic clock system based on the 51 microcontroller. This system not only displays the current time but also features an alarm reminder function. The article comprehensively analyzes hardware design, software architecture, core algorithms, and code implementation, providing complete C language source code … Read more

Design of an Electronic Clock with LCD for 51 Microcontroller

Design of an Electronic Clock with LCD for 51 Microcontroller

The LCD screen is JM12864 or FYD12864 (with font library). I have used both models without issues. 4 rows * 8 columns of Chinese characters = 32 serial communication interfaces P1.5–P1.7, which can be modified according to your circuit. #include #define uchar unsigned char void LCD_ini(); void ascii_change(void); void delay(); void wri_add(uchar com); void wri_dat(uchar … Read more

Building an Electronic Clock and Weather Display Based on the ESP8266 (NodeMCU) Platform

Building an Electronic Clock and Weather Display Based on the ESP8266 (NodeMCU) Platform

/ Building an Electronic Clock and Weather Display Based on the ESP8266 (NodeMCU) Platform/ Video 1. Introduction I previously had a clock on my desk that used a OnePlus 5 with an OLED screen, powered by a Snapdragon 835 SoC, with a ROM derived from the Pixel Experience of Android 10. The clock app used … Read more

ESP32-C3 E-Ink Screen Electronic Clock Using Micropython

ESP32-C3 E-Ink Screen Electronic Clock Using Micropython

Click the blue text above to follow us The article “ESP32-C3 Driving E-Ink Screen and Displaying Images (Based on Micropython)” introduces the driving of a 2.9-inch E-Ink screen, achieving text display on the E-Ink screen. This note introduces the E-Ink screen clock we designed and produced. 1. Required Hardware 1) Holo’s ESP32-C3: 2) The 2.9-inch … Read more