这是本文档旧的修订版!


ESP32-C3Mini

ESP32C3SuperMini is an IoT mini development board based on the Espressif ESP32-C3 WiFi/Bluetooth dual-mode chip. ESP32-C3 is a 32-bit RISC-V CPU, including FPU (Floating Point Unit), which can perform 32-bit single-precision operations and has powerful computing capabilities. It has excellent RF performance and supports IEEE 802.11 b/g/n WiFi and Bluetooth 5 (LE) protocols. The board comes with an external antenna to enhance signal strength for wireless applications. It also has a small form factor combined with a single-sided surface mount design. It is equipped with rich interfaces, with 11 digital I/Os that can be used as PWM pins and 4 analog I/Os that can be used as ADC pins. It supports four serial interfaces including UART, I2C and SPI. Also on the board is a small reset button and a bootloader mode button.Based on the above features, ESP32C3SuperMini is positioned as a high-performance, low-power, and cost-effective IoT mini development board, suitable for low-power IoT applications and wireless wearable applications.

ESP32C3-SuperMiniESP32C3-SuperMini

  • Powerful CPU: ESP32-C3, 32-bit RISC-V single-core processor running at up to 160 MHzWiFi: 802.11b/g/n protocol, 2.4GhHz, support Station mode, SoftAP mode, SoftAP+Station mode, mixed modeBluetooth: Bluetooth 5.0Ultra-low power consumption: deep sleep power consumption is about 43μAAbundant board resources: 400KB SRAM, 384KB ROM built-in 4Mflash.Chip model: ESP32C3FN4Ultra-Small Size: As small as your thumb (22.52x18mm) Classic form factor for wearables and small projectsRobust Security Features: Cryptographic hardware accelerators supporting AES-128/256, hashing, RSA, HMAC, digital signatures and secure bootRich interfaces: 1xI2C, 1xSPI, 2xUART, 11xGPIO(PWM), 4xADCSingle-sided component, surface mount designOnboard LED blue light: GPIO8 pin

Ardunino ESP32C3 Dev Module 引脚映射Ardunino ESP32C3 Dev Module Pin Mapping

尺寸图Dimensions

原理图schematic diagram

If external power supply is required, just connect the + stage of the external power supply to the 5V position and GND to the negative pole. (support 3.3 ~ 6V power supply). Remember that when connecting to an external power supply, USB cannot be connected, and you can only choose between USB and external power supply.

Notice

When welding, please be careful not to short-circuit the positive and negative poles, which may burn the battery and equipment.

If you want to use an external antenna, you can connect an external antenna according to the picture below.

You need to prepare the following:

1 ESP32C3SuperMini

1 computer

1 x USB Type-C data cable

hint

Some USB cables can only provide power and cannot transfer data. If you don't have a USB cable or don't know if your USB cable can transfer data, you can buy a Type-c cableopen in new window

  • Step 1. Connect ESP32C3SuperMini to computer via USB Type-C data cable

  • Step 1. Download and install the latest version of Arduino IDE according to your operating system

{{https://www.nologo.tech/assets/img/arduino/other/ArduinoIDE.png?nolink&}}open in new window

If the download is slow, you can download it in the domestic Arduino communityArduinoIDEDownload addressopen in new window

Step 2. Launch the Arduino application

Step 3. Add the ESP32 board package to the Arduino IDE

Navigate to File > Preferences and fill in the “Additional Boards Manager URL” with the following url:

https://raw.githubusercontent.com/espressif/arduino-esp32/gh-pages/package_esp32_index.json

导航到Tools > Board > Boards Manager… ,在搜索框中输入关键字“ esp32 ”,选择最新版本的esp32并安装它。

导航到工具 > 开发板 > ESP32 Arduino并选择“ ESP32C3 Dev Module ”。板的列表有点长,你需要滚动到底部才能到达它。

导航到“工具”>“端口”,然后选择所连接的 ESP32C3SuperMini 的串口名称。这可能是 COM3 或更高版本(COM1和COM2通常保留用于硬件串行端口)。

步骤1.将以下代码复制到Arduino IDE

''// define led according to pin diagram
int led = 8;

void setup() {
  // initialize digital pin led as an output
  pinMode(led, OUTPUT);
}

void loop() {
  digitalWrite(led, HIGH);   // turn the LED on
  delay(1000);   // wait for a second
  digitalWrite(led, LOW);    // turn the LED off
  delay(1000);               // wait for a second
}

''

上传后,您将看到板子上的LED 闪烁,每次闪烁之间有 1 秒的延迟。

35.01hw33cvra1cm02b5f3ztwfgkk@mail4u.run, 2024/04/22 18:13

eius occaecati qui totam consequatur consequuntur quia sed non itaque. quos consectetur sint repellat voluptatem eaque ab voluptate distinctio deleniti accusantium beatae nisi dolore reiciendis cum. h

36.01hw33cvra1cm02b5f3ztwfgkk@mail4u.life, 2024/05/12 09:16

porro impedit ut qui voluptatem explicabo eum sint ut natus atque unde adipisci corrupti rerum. et hic corrupti fuga magnam non inventore dolorem. reiciendis quia neque quis hic quo iure unde dolor mo

schermerdusenberycmp5p8+56pnrk3bmf5a@gmail.com, 2024/06/19 14:06

reprehenderit eius voluptatibus tempora qui voluptatum quaerat similique mollitia qui repudiandae culpa. velit laudantium sed iure quod perspiciatis sit et voluptatem enim eos a et quo consequatur et

medranostarckuzz8n0+56pnrl44nosg@gmail.com, 2024/06/30 03:56

assumenda aut dolores ducimus expedita sunt vel laudantium ea non omnis expedita molestiae consequatur non ullam doloremque atque. eum sed nesciunt et nulla velit nam soluta corrupti omnis praesentium

osbornehartlinejvp4u1+56pnrjeh2kjv@gmail.com, 2024/07/12 00:19

dolor voluptatem perspiciatis repellat quos. architecto cumque aut labore assumenda explicabo esse nihil dolore velit.

Anthonynig, 2025/05/08 20:36

<a href=https://cryptolake.online/crypto3>News on crypto adoption</a>

Documentation for ESP32-2424S012C-I, 2025/06/29 00:40

Can you send me the documentation of these hardware? ESP32-2424S012C-I

请输入您的评论. 可以使用维基语法:
 
  • developmentboard/esp32-c3mini.1693644656.txt.gz
  • 最后更改: 2023/09/02 08:50
  • admin12