Arduino LED Breathing Light Tutorial

Arduino LED Breathing Light Tutorial

Main Component Introduction Briefly; please refer to the introductory LED blinking LED Breathing Light Introduction Digital signals are represented by 0 and 1, which indicate non-continuous changes in voltage levels, while analog signals represent information through continuously varying physical quantities, with signals changing continuously over time. Most of the signals we encounter in our lives … Read more

Arduino Example Tutorial: Practice Makes Perfect!

Arduino Example Tutorial: Practice Makes Perfect!

Do you remember the first and second episodes of Fei’s knowledge nuggets? Do you recall the explanation about Arduino? (If you haven’t seen it, click the image below to check it out👇) (Remember to come back after watching) Are you still a bit confused? To make it more vivid and less boring, let’s understand Arduino … Read more

Arduino LED Chaser Tutorial

Arduino LED Chaser Tutorial

Recently, a little friend named Qiuqiu has developed a strong interest in Arduino, often looking for books or videos to learn from. After completing some simple projects, Qiuqiu saw a tutorial on making a DIY LED chaser in the Arduino Chinese forum community and decided to learn it. Learning Process: Materials Needed: One Arduino Uno … Read more

Getting Started with the ESP8266 Development Environment

Getting Started with the ESP8266 Development Environment

Today, I will introduce the development environment for ESP8266 and how to configure the VScode Arduino development environment. Our series of ESP8266 development is based on VScode, rather than using the Arduino IDE, which will be explained below. The ESP8266 module I am using is the ESP-12F, and the development board is similar to NodeMcu, … Read more

Exploring Arduino Development Boards: Comprehensive Practice Course Report

Exploring Arduino Development Boards: Comprehensive Practice Course Report

The comprehensive practice course for Computer Science major—Arduino development board course is an important part of the comprehensive practice for Computer Science. This course aims to guide students to master cutting-edge embedded system development technologies. It combines theoretical knowledge with practical operations, focusing on cultivating students’ hands-on skills and innovative thinking. Through Arduino development boards, … Read more

Understanding the Components of Arduino Development Boards

Understanding the Components of Arduino Development Boards

Click the blue text to follow us Hello everyone Welcome to 【Advanced Training Industrial Control】 Session Three Arduino Maker Series Basic Application Explanation Lesson Three The Components of Arduino Development Boards Those who have learned about Arduino know that: Arduino consists of a microcontroller and a development environment. In the last session, we also learned … Read more

Choosing Between Arduino and Raspberry Pi for Beginners

Choosing Between Arduino and Raspberry Pi for Beginners

Everyone knows that Arduino and Raspberry Pi are two types of development boards that are quite familiar to electronics and embedded engineers, and they are also boards that many beginners consider. Arduino and Raspberry Pi each have their own positioning, and there is a significant difference in performance. However, recently, Arduino launched the Portenta X8 … Read more

History of Development Boards and Their Differences from SBCs

History of Development Boards and Their Differences from SBCs

In recent years, the term “development board” has nearly disappeared, overshadowed by countless other hardware board terms used to describe development purposes, such as “demonstration board,” “evaluation kit,” and “reference design.” In this article, we will explain the meaning of the term “development board” (Figure 1) and show how they differ from closely related single-board … Read more

How to Write I2C Driver Functions from Scratch

How to Write I2C Driver Functions from Scratch

Many people do not know how to write programs by looking at timing diagrams. Below, we will analyze a non-standard I2C device and teach everyone how to write an efficient IO simulation of I2C timing. Observing the timing diagram, it includes the I2C start signal, I2C stop signal, I2C acknowledgment, non-acknowledgment, response acknowledgment, as well … Read more

Comprehensive Guide to Arduino Wire Library for I2C Communication

Comprehensive Guide to Arduino Wire Library for I2C Communication

In the creative world of Arduino, when we desire to enable our small development board to collaborate seamlessly with various external devices, achieving more complex and powerful functions, the Wire library emerges like a hidden master, quietly facilitating our connection with I2C devices. Today, let us unveil the mystery of the Wire library and explore … Read more