Rain Drop Sensor: Embedded Development with ESP32 in Rust

Rain Drop Sensor: Embedded Development with ESP32 in Rust

Rain Drop Sensor: Embedded Development with ESP32 in Rust The rain drop sensor is an environmental sensing device that can perceive the presence of rain, the amount of rainfall, and the intensity of precipitation in real-time. Its core function is to convert the physical property changes caused by raindrop contact (such as changes in resistance, … Read more

LSPosed Embedded Module: The Best Framework Service 1.10.1

LSPosed Embedded Module: The Best Framework Service 1.10.1

LSPosed app is a highly useful special framework software specifically designed for Android phones. Compared to Apple devices, Android phones in China generally offer a higher level of playability. This software helps users achieve a smoother experience and provides more features and characteristics compared to other frameworks. The app is developed based on the ED … Read more

The Open Source ‘Panoramic Roadmap’ Project to Transform from Beginner to Embedded Expert

The Open Source 'Panoramic Roadmap' Project to Transform from Beginner to Embedded Expert

This open-source project is a ‘panoramic roadmap’ that connects ‘hardware’ + ‘software’ + ‘soft skills’, helping you navigate from a beginner to an ’embedded expert’ on your own. 🧐 What is this all about? The Embedded-Engineering-Roadmap (hereinafter referred to as Roadmap) is an open-source Markdown/Visio document that categorizes common job requirements, essential knowledge points, and … Read more

Sharing Embedded Development Experiences: Learning as a Passion

Sharing Embedded Development Experiences: Learning as a Passion

Sharing the experiences of predecessors, hoping to provide some help to friends who are new to embedded development. Having been in the internet industry for over seven years, I have taken many detours and faced numerous hardships.University Stage The university I attended was not a prestigious one, so before the semester started, I resolved to … Read more

Why Are Arduino Projects Less Common in China?

Why Are Arduino Projects Less Common in China?

Abroad, Arduino is often the first choice for many makers, but it has become less popular in China. What is the reason for this? Today, let’s discuss something different and take a break from technical knowledge!1. What are the advantages of Arduino?(1) The biggest advantage is: it is easy to get started, has low requirements … Read more

Code Composer Studio 20.2 Installation Guide

Code Composer Studio 20.2 Installation Guide

Software Introduction Code Composer Studio 20.2 is an integrated development environment (IDE) launched by Texas Instruments (TI). It is based on the Theia IDE framework and provides a user experience similar to that of Visual Studio Code. This software can be used to create and debug applications for all Texas Instruments embedded processors (such as … Read more

15W Voice Amplifier Board for Reversing Horn – NVC Voice Module Music Amplifier

15W Voice Amplifier Board for Reversing Horn - NVC Voice Module Music Amplifier

15W Voice Amplifier Board for Reversing Horn – NVC Voice Module Music Amplifier Functional Features: 1. Operates at a voltage range of 9-24V; 2. The NVC voice chip can be tested on this board, with support for buttons and serial communication; 3. No additional peripheral circuits are required; 4. Power can directly drive loads below … Read more

Your New Solution Choice

Your New Solution Choice

Embedded Development is a rapidly evolving field, and choosing the right solutions is crucial for success. In this article, we explore various options available for developers looking to enhance their projects. Whether you are working on embedded hardware or embedded software, understanding the latest trends and tools can significantly impact your work. We will also … Read more

Is It Difficult to Enter Major Companies in Embedded Development?

Is It Difficult to Enter Major Companies in Embedded Development?

In today’s rapidly advancing technology landscape, embedded systems serve as a bridge connecting hardware and software, widely applied in various fields such as the Internet of Things, smart homes, and automotive electronics. For job seekers with technical aspirations, entering a major company to work in embedded development is undoubtedly an attractive career choice. However, the … Read more

Getting Started with Makefile: From Rules to Automated Builds

Getting Started with Makefile: From Rules to Automated Builds

By mastering the variables, rules, implicit rules, and automatic variables of Makefile, you can transform scattered compilation commands into a stable, efficient, and reusable build pipeline. Make Build Process 1. Basic Syntax of Makefile (Minimal Working Example) A simple Makefile: CC = gcc CFLAGS = -O2 -Wall SRC = main.c util.c OBJ = $(SRC:.c=.o) all: … Read more