Weekend Live Class | Easily Create an Interactive Music Atmosphere Light with Arduino

Weekend Live Class | Easily Create an Interactive Music Atmosphere Light with Arduino

Lighting is an important medium for visual interaction. From the initial cold and warm light sources to the now programmable RGB LED lights that can control hue and brightness, the development and evolution of lighting have added more color to our lives. Many friends carefully design a set of startup lighting effects for their computer … Read more

The Secret Date Between PLC and Arduino: How Two Platforms Collaborate for Home Automation

The Secret Date Between PLC and Arduino: How Two Platforms Collaborate for Home Automation

The Secret Date Between PLC and Arduino: How Two Platforms Collaborate for Home Automation Hello everyone, I am Lao Liu, a veteran in the industrial control industry. Today, let’s discuss an interesting topic: how to combine industrial-grade PLCs with DIY Arduino to create some home automation gadgets. This all started with my balcony vegetable growing … Read more

A Journey Through the World of Sensors: Fascinating Experiments Based on Arduino

A Journey Through the World of Sensors: Fascinating Experiments Based on Arduino

Exploring the World of Sensors: A Fascinating Journey of Experiments Based on Arduino In today’s rapidly advancing technology, sensors serve as the “tentacles” that perceive the world, widely used across various fields. Are you curious about how these sensors work? Do you want to experience their wonders firsthand? Today, let us use the Arduino development … Read more

A New Chapter in High School Physics Experiment Teaching Reform with Arduino IoT Technology

A New Chapter in High School Physics Experiment Teaching Reform with Arduino IoT Technology

With Arduino IoT Technology A New Chapter in High School Physics Experiment Teaching Reform Network Training Activities of the Studio Spring Breeze and Rain, Enlightening the Future On April 24, 2025, with the spring in full bloom, all members of the Zhang Tu Master Studio gathered online for a passionate meeting, officially launching the key … Read more

Getting Started with ESP32 and Arduino (Part 3): Connecting to WiFi and Retrieving Current Time

Getting Started with ESP32 and Arduino (Part 3): Connecting to WiFi and Retrieving Current Time

The ESP32 has a built-in WiFi module, making it very simple and convenient to connect to WiFi. The code is as follows: #include <WiFi.h> const char* ssid = "WIFI_NAME"; const char* password = "WIFI_PASSWORD"; void setup() { Serial.begin(115200); WiFi.begin(ssid, password); while (WiFi.status() != WL_CONNECTED) { // statement delay(500); Serial.println("Connecting to WiFi…"); } Serial.println("Connected to the … Read more

Course Sharing | Beijing No. 2 Middle School: (1) Traffic Lights

Course Sharing | Beijing No. 2 Middle School: (1) Traffic Lights

Lesson 1: Traffic Lights 2018/10/15 Students, traffic lights are not unfamiliar to us; their existence makes our traffic life safer and more orderly. Do you know who invented the first traffic light? Let’s find out together. In 1868, British mechanical engineer J. P. Knight installed the world’s first gas-powered traffic light in front of the … Read more

Arduino UNO: Beginner’s Practical Guide to the Smart Greenhouse Monitoring System

Arduino UNO: Beginner's Practical Guide to the Smart Greenhouse Monitoring System

Hey, do you want to create something fun and practical with Arduino? Today, we will build a simple smart greenhouse monitoring system. Don’t worry, even if this is your first time with Arduino, you can easily manage it by following this tutorial! Imagine creating a small system with your own hands that can automatically detect … Read more

Arduino Lecture 9: Serial Communication

Arduino Lecture 9: Serial Communication

01Serial CommunicationSerial Port:The serial port, also known asserial communicationinterface orserial communication interface(usually referring toCOM port), is anexpansion interface that uses serial communication.USB (Universal Serial Bus)is a serial portbus standardand also atechnical specification for input and output interfacesthat is widely used inpersonal computersandmobile devicesand has expanded tophotographic equipment,digital televisions(set-top boxes),game consolesand other related fields.Serial communication: Refers … Read more

Getting Started with ESP32 and Arduino (Part 3): Connecting to WiFi and Retrieving Current Time

Getting Started with ESP32 and Arduino (Part 3): Connecting to WiFi and Retrieving Current Time

The ESP32 has a built-in WiFi module, making it very simple and convenient to connect to WiFi. The code is as follows: #include <WiFi.h> const char* ssid = "WIFI_NAME"; const char* password = "WIFI_PASSWORD"; void setup() { Serial.begin(115200); WiFi.begin(ssid, password); while (WiFi.status() != WL_CONNECTED) { // statement delay(500); Serial.println("Connecting to WiFi…"); } Serial.println("Connected to the … Read more