The ESP32-C6 SuperMini is a compact microcontroller module manufactured by Tenstar Robot. It integrates Wi-Fi and Bluetooth capabilities, making it an ideal choice for Internet of Things (IoT) applications. This module is designed to offer low power consumption and high performance, making it suitable for a wide range of applications, from home automation to industrial control systems.
Parameter | Value |
---|---|
Manufacturer | Tenstar Robot |
Part ID | ESP32-C6 SuperMini |
Operating Voltage | 3.3V |
Input Voltage | 5V (via USB) |
Digital I/O Pins | 22 |
Analog Input Pins | 6 |
Flash Memory | 4MB |
SRAM | 320KB |
Wi-Fi Standards | 802.11 b/g/n |
Bluetooth Version | Bluetooth 5.0 |
Power Consumption | Ultra-low power consumption in deep sleep |
Dimensions | 18mm x 25mm |
Pin Number | Pin Name | Description |
---|---|---|
1 | GND | Ground |
2 | 3V3 | 3.3V Power Supply |
3 | EN | Enable Pin (Active High) |
4 | IO0 | GPIO0, used for boot mode selection |
5 | IO1 | GPIO1, general-purpose I/O |
6 | IO2 | GPIO2, general-purpose I/O |
7 | IO3 | GPIO3, general-purpose I/O |
8 | IO4 | GPIO4, general-purpose I/O |
9 | IO5 | GPIO5, general-purpose I/O |
10 | IO6 | GPIO6, general-purpose I/O |
11 | IO7 | GPIO7, general-purpose I/O |
12 | IO8 | GPIO8, general-purpose I/O |
13 | IO9 | GPIO9, general-purpose I/O |
14 | IO10 | GPIO10, general-purpose I/O |
15 | IO11 | GPIO11, general-purpose I/O |
16 | IO12 | GPIO12, general-purpose I/O |
17 | IO13 | GPIO13, general-purpose I/O |
18 | IO14 | GPIO14, general-purpose I/O |
19 | IO15 | GPIO15, general-purpose I/O |
20 | IO16 | GPIO16, general-purpose I/O |
21 | IO17 | GPIO17, general-purpose I/O |
22 | IO18 | GPIO18, general-purpose I/O |
Power Supply:
Programming:
GPIO Usage:
#include <WiFi.h>
// Replace with your network credentials
const char* ssid = "your_SSID";
const char* password = "your_PASSWORD";
void setup() {
// Initialize serial communication
Serial.begin(115200);
// Connect to Wi-Fi
WiFi.begin(ssid, password);
// Wait for connection
while (WiFi.status() != WL_CONNECTED) {
delay(1000);
Serial.println("Connecting to WiFi...");
}
// Print the IP address
Serial.println("Connected to WiFi");
Serial.print("IP Address: ");
Serial.println(WiFi.localIP());
}
void loop() {
// Your main code here
}
Wi-Fi Connection Issues:
Power Supply Problems:
Programming Errors:
By following this documentation, users can effectively integrate the ESP32-C6 SuperMini into their projects, leveraging its powerful features for a wide range of applications.