Getting Started with Arduino IDE: A Journey into IoT

Getting Started with Arduino IDE: A Journey into IoT

1. What is Arduino IDE? In today’s wave of digitalization, the Internet of Things (IoT) is like a magical force that connects various devices in our lives, making homes smarter and cities more intelligent. In the vast realm of IoT development, Arduino IDE serves as a magical key, opening the door to an exciting world … Read more

The Most Comprehensive Node.js Resource Collection

The Most Comprehensive Node.js Resource Collection

Hello everyone, I am the Programmer No need to translate the official ChatGPT and Claude, as well as Midjourney, stable after-sales support is available. Author @QianShaoJun | Address @https://github.com/jobbole/awesome-nodejs-cn [Guide]:Node.js is an open-source, cross-platform JavaScript runtime tool for writing server-side applications and command-line tools. The awesome-nodejs list is maintained by sindresorhus and includes resources such … Read more

How to Build a Particulate Matter Sensor with Raspberry Pi

How to Build a Particulate Matter Sensor with Raspberry Pi

Monitor air quality using a Raspberry Pi, a cheap sensor, and an inexpensive screen. — Stephan Tetzel About a year ago, I wrote an article on how to measure air quality using a Raspberry Pi and a cheap sensor. We have been using this project at school and privately for the past few years. However, … Read more

Arduino Circuit Programming Maker Course – Default Class

Arduino Circuit Programming Maker Course - Default Class

Available Arduino Circuit Programming Maker Course – Default Class (1080p) Editor Wei♥o(* ̄▽ ̄*)ブ: uu66ue or Wei♥: mmm44c Course Content Arduino Circuit Programming Maker Course – Default Class 001.01. Basic Instructions.mp4 View Path 002.02. Software Installation.mp4 View Path 003.03. Light Up LED.mp4 View Path 004.04. LED Blinking.mp4 View Path 005.05. Running LED.mp4 View Path 006.06. Simplified Running … Read more

Build a Cocktail-Making Robot with Arduino

Build a Cocktail-Making Robot with Arduino

Welcome to the World of “Creation” Original Author: Ted Kinsman Translated by: Hua Shen * Authorized by Makezin Every party needs a conversation starter, and what better than a cocktail-making robot? This not only serves as a great talking point but also allows the host to mingle with guests instead of being stuck behind the … Read more

Basics of Arduino Programming

Basics of Arduino Programming

/ Basics of Arduino Programming / Using C++ programming, basic reference to C++ syntax. Each statement ends with a semicolon, comments use //, uppercase words are special characters and should not be misused. Functions are enclosed in {}. void setup() { // put your setup code here, to run once: // This code runs once … Read more

Exploring the Secrets of RGB LED Technology

Exploring the Secrets of RGB LED Technology

After learning the basic knowledge of LED, students have gained some understanding of LED, especially the monochrome LED. However, in many areas of our lives, we also use a type of LED with a richer color palette, called full-color LED. In this lesson, we will guide students to explore the dazzling secrets of LED. Figure … Read more

Lanqiao Cup Arduino Competition Course Share

Lanqiao Cup Arduino Competition Course Share

How to Obtain 1. Follow the public account below, and click 【Like】 and 【Looking】 2. Reply 【Course】 in the public account to obtain the materials. There is a course share for the Lanqiao Cup Arduino competition! # Lanqiao Cup Arduino Competition: Start Your Smart Hardware Innovation Journey In today’s rapidly developing technological era, the innovation … Read more

Getting Started with FreeRTOS Software Timers

Getting Started with FreeRTOS Software Timers

1. Concept of Software Timers A software timer is a mechanism used to trigger events after a specific time, similar to an alarm clock in real life. Users can set the timer to specify when and how often an event occurs, and call a predefined callback function when the time is reached. Unlike hardware timers, … Read more

What Happens After main() Exits in Microcontroller?

What Happens After main() Exits in Microcontroller?

For embedded systems, if there is no RTOS running, the main function main() in program development needs to ensure it runs happily forever through some mechanism; it has no endpoint. If you want to exit from the main function, what happens afterwards is determined by the C language compiler being used. 1. Question Raised In … Read more