Hardware

ESP32

What is ESP32?

The ESP32 is a low-cost, low-power microcontroller that is designed for IoT applications. It features a dual-core processor, built-in Wi-Fi and Bluetooth connectivity, and a wide range of I/O pins for interfacing with sensors and other devices. The ESP32 is widely used in projects that require wireless communication, such as home automation, smart devices, and remote monitoring systems.


擦除 EEPROM

> pip install esptool

# ESP32
> python -m esptool --chip esp32 erase_flash

# ESP32-S3
> python -m esptool --chip esp32-s3 erase_flash

ESP32 EEPROM

Previous
Rust