

The ESP32-C6 Super Mini is a compact and powerful microcontroller designed for IoT applications and embedded systems. It features integrated Wi-Fi 6 and Bluetooth 5.0 capabilities, making it an excellent choice for projects requiring wireless communication. Its small form factor and energy-efficient design make it ideal for portable and battery-powered devices.








The ESP32-C6 Super Mini offers robust performance and connectivity features. Below are its key technical specifications:
| Parameter | Value |
|---|---|
| Microcontroller | ESP32-C6 |
| Wireless Connectivity | Wi-Fi 6, Bluetooth 5.0 |
| Operating Voltage | 3.3V |
| Flash Memory | 4MB |
| SRAM | 512KB |
| GPIO Pins | 22 |
| Operating Temperature | -40°C to +85°C |
| Dimensions | 18mm x 25mm |
The ESP32-C6 Super Mini has a total of 22 GPIO pins, which can be used for various purposes such as digital I/O, PWM, ADC, and more. Below is the pinout description:
| Pin Number | Pin Name | Functionality |
|---|---|---|
| 1 | GND | Ground |
| 2 | 3V3 | 3.3V Power Supply |
| 3 | EN | Enable Pin (Active High) |
| 4 | IO0 | GPIO0, Boot Mode Selection |
| 5 | IO1 | GPIO1, UART TX |
| 6 | IO2 | GPIO2, ADC, PWM |
| 7 | IO3 | GPIO3, UART RX |
| 8 | IO4 | GPIO4, ADC, PWM |
| 9 | IO5 | GPIO5, ADC, PWM |
| 10 | IO6 | GPIO6, SPI CLK |
| 11 | IO7 | GPIO7, SPI MISO |
| 12 | IO8 | GPIO8, SPI MOSI |
| 13 | IO9 | GPIO9, I2C SDA |
| 14 | IO10 | GPIO10, I2C SCL |
| 15 | IO11 | GPIO11, ADC, PWM |
| 16 | IO12 | GPIO12, ADC, PWM |
| 17 | IO13 | GPIO13, ADC, PWM |
| 18 | IO14 | GPIO14, ADC, PWM |
| 19 | IO15 | GPIO15, ADC, PWM |
| 20 | IO16 | GPIO16, ADC, PWM |
| 21 | IO17 | GPIO17, ADC, PWM |
| 22 | RST | Reset Pin |
The ESP32-C6 Super Mini can be programmed using the Arduino IDE. Below is an example of how to blink an LED connected to GPIO2:
// Define the GPIO pin for the LED
#define LED_PIN 2
void setup() {
// Set the LED pin as an output
pinMode(LED_PIN, OUTPUT);
}
void loop() {
// Turn the LED on
digitalWrite(LED_PIN, HIGH);
delay(1000); // Wait for 1 second
// Turn the LED off
digitalWrite(LED_PIN, LOW);
delay(1000); // Wait for 1 second
}
Module Not Detected by Computer
Code Upload Fails
Wi-Fi or Bluetooth Not Working
Overheating
By following this documentation, you can effectively integrate the ESP32-C6 Super Mini into your projects and troubleshoot common issues.