Release of Arduino IDE 2.0.0: A User-Friendly Interface with Enhanced Features

Release of Arduino IDE 2.0.0: A User-Friendly Interface with Enhanced Features

The new version of Arduino IDE 2.0.0 has been officially released. The new development environment is based on the Eclipse Theia framework, an open-source project based on the same architecture as VS Code. The front end is written in TypeScript, and most of the back end is written in Golang. The new IDE offers a … Read more

Creating a Weather Station with Unlimited Data Transmission Using Arduino

Creating a Weather Station with Unlimited Data Transmission Using Arduino

Let’s become technology enthusiasts together Author: iwoox This project uses Arduino open-source hardware to quickly create a weather station with unlimited data transmission capabilities. I previously created a weather station project with data logging functionality, and this is an upgraded and improved version. Step 1: Concept First, we need to add wireless data transmission functionality … Read more

How to Add Seeed Development Boards to Arduino IDE in Four Easy Steps

How to Add Seeed Development Boards to Arduino IDE in Four Easy Steps

Q A & Question: How to add Seeed boards to Arduino IDE Seeed has designed many development boards that can be used with Arduino IDE, such as the products listed below. Today, we will introduce how to add these development boards to Arduino IDE. Seeeduino XIAO Seeeduino Wio Terminal Seeeduino Lotus Cortex-M0+ Seeeduino LoRaWAN/GPS Seeeduino … Read more

TaskScheduler: A Lightweight Cooperative Multitasking Scheduler for Arduino, ESP32, STM32 and Other Microcontrollers

TaskScheduler: A Lightweight Cooperative Multitasking Scheduler for Arduino, ESP32, STM32 and Other Microcontrollers

In embedded development, multitasking is key to improving system efficiency and functionality. For resource-constrained microcontrollers, traditional preemptive multitasking frameworks (like FreeRTOS) can be overly complex and resource-intensive. In this case, the lightweight cooperative multitasking scheduler TaskScheduler becomes an ideal choice. Introduction to TaskScheduler TaskScheduler is a library that provides cooperative multitasking capabilities for microcontrollers such … Read more

First STM32 Development Board Supporting Arduino Interface Launched!

First STM32 Development Board Supporting Arduino Interface Launched!

The first STM32 development board supporting Arduino interface has been launched! The star OTTO development board 【ard-otto-stm32】 is the first Arduino™ board that includes high-performance image processing, display support, and Wi-Fi connectivity, allowing users to create connected systems that provide an extraordinary audiovisual experience. To showcase the high-performance image processing advantages of the STM32F469BIT6 microprocessor, … Read more

Combining Raspberry Pi and Arduino: A Comprehensive Guide

Combining Raspberry Pi and Arduino: A Comprehensive Guide

1. Introduction The Raspberry Pi is an advanced embedded Linux board that can perform complete computer functions. In recent years, due to its affordability and ease of use, the Raspberry Pi has become very popular among developers. Additionally, Arduino is a convenient and flexible embedded development tool that can perform real-time signal acquisition and control. … Read more

Arduino Uno | Measuring Distance with HC-SR04 Ultrasonic Sensor

Arduino Uno | Measuring Distance with HC-SR04 Ultrasonic Sensor

Example Effect Press the serial monitor, and you can see that the measured distance is 9.8cm-10.1cm with an error of about 0.2cm. HC-SR04 An ultrasonic sensor used for distance measurement, widely applied in robotics to avoid obstacles and measure distances. Its module uses Trig to trigger distance measurement, which emits 8 40kHz square waves and … Read more

Arduino UNO R4 Launch: Enhanced Specifications and Chip Upgrade

Arduino UNO R4 Launch: Enhanced Specifications and Chip Upgrade

Arduino has not released a new model for the UNO since the launch of UNO R3 in 2010. This model has endured and remained popular for a long time. Thirteen years later, they finally released an upgraded model — Arduino UNO R4. Compared to the old version, the new model has made significant improvements in … Read more

Arduino Lab for MicroPython: An Integrated Development Environment for MicroPython Developers

Arduino Lab for MicroPython: An Integrated Development Environment for MicroPython Developers

MicroPython is a lightweight implementation of Python designed for embedded systems, capable of running on microcontrollers. Arduino Lab for MicroPython (hereafter referred to as Arduino Lab) is an integrated development environment (IDE) specifically designed by Arduino for MicroPython developers, aiming to provide a convenient programming environment and tools to help developers write and debug MicroPython … Read more

Quick Start for Beginners: Mastering ESP32 with Arduino IDE

Quick Start for Beginners: Mastering ESP32 with Arduino IDE

Hello everyone, I am Machine Panda. In order to do a good job, one must first sharpen their tools. Therefore, choosing a suitable development environment is crucial. Since this series mainly uses the ESP32 microcontroller, there are generally three mainstream development methods: Arduino, a convenient and flexible open-source electronic prototyping platform, supports ESP32, ESP8266, etc., … Read more