ESP32-C3 Super Mini

New ESP32-C3 Super Mini View larger

ZWIXUC_ESP32-C3_super_mini

New product

This product is no longer in stock

28,54 lei Tax included

Delivery: 1 to 4 weeks

Add to wishlist

Product Description:

This development board is perfect for smaller projects that require a few digital or analog pins.

It can communicate through the following communication protocols: SPI, UART, and I2C.

Technical Specifications:

Microcontroller: ESP32-C3 FH4 (32-bit RISC-V single-core processor, up to 160 MHz)

Power Supply (USB): 5V

Digital I/O Pins: 13 (of which 5 are analog)

Flash Memory: 4MB built-in SPI FLASH

WiFi: chip antenna 2.4GHz

Pinout:

pinout_esp32s3_super_mini.png

Schematic:

esp32c3schematicdiagram.png

Dimensions:

dimensiuni_esp32s3_super_mini.png

Example Connection Arduino IDE:

To perform this example, you will need the following:

1x ESP32-C3 Super Mini Development Board || Reference ZWIXUC_ESP32-C3_super_mini

Step 1 - Download Arduino IDE

Link: Arduino IDE

Before connecting the board, start by downloading Arduino IDE 1.8.x from the link above, according to your preferences and operating system.

Step 2 - Necessary settings in Arduino IDE.

First, you will need to download a set of boards in Arduino IDE, so after opening Arduino, go to File->Preferences, and in the "Additional Boards Manager URLs" section, attach the following URL:

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

AdditionalBoardsManagerURLsESP32.jpg

Click OK, then open "Tools"->"Board: ", and from the drop-down list, select the "Boards Manager..." button.

Search for "esp32", and the "esp32 by Espressif Systems" package should appear in the list. Click install and wait for it to finish installing.

WhatsApp%20Image%202021-10-18%20at%2013-

Next, go to "Tools"->"Board"->"ESP32 Arduino" where different Arduino-compatible ESP32 boards will be displayed. Choose "ESP32C3 Dev Module" from the list.

Tools-ESP32-C3.png

After selecting the board, also in the tools menu, change the "USB CDC On Boot:" option to "Enabled" to allow code uploading without the need to enter the boot mode of the board.

Tools-CDC-ESP32-C3.png

In Arduino IDE, from the "Tools -> Port" menu, select the new port that appeared in Device Manager once the board is connected.

If you have multiple ports and are not sure which one is the ESP32-C3 Super Mini, press "RESET", disconnect the board from USB, then check the "Ports" menu in Device Manager to see which one appears.

Step 4 - Making connections and uploading test code

  • Example 1: Testing the built-in LED on the board (Blink):

Copy the code below and upload it to the development board:

#define LED_PIN 8

// the setup function runs once when you press reset or power the board
void setup()
{
pinMode(LED_PIN, OUTPUT);
}

// the loop function runs over and over again forever
void loop()
{
digitalWrite(LED_PIN, HIGH); // turn the LED on (HIGH is the voltage level)
delay(1000); // wait for a second
digitalWrite(LED_PIN, LOW); // turn the LED off by making the voltage LOW
delay(1000); // wait for a second
}

After uploading, the LED connected to digital pin 8 will blink with a delay of one second.

  • Example 2: Scanning available WiFi networks:

Select Files->Examples->Wifi->

Files-WiFIScan-ESP32-C3.png

After uploading, open Serial Monitor and set the baud rate to the value in the code (115200).

SerialMonitor-ESP32-C3.png

The available WiFi networks will be scanned and displayed as shown above.

Package Contents:

1x piece ESP32-C3 Super Mini Development Board

2x pieces 8-pin male header with 2.54mm pitch

No customer reviews for the moment.

Write a review

ESP32-C3 Super Mini

ESP32-C3 Super Mini

30 other products in the same category: