The uPesy Wroom DevKit V2 is a compact and versatile development board built around the ESP32-WROOM-32 module. Designed for Internet of Things (IoT) applications, it offers robust Wi-Fi and Bluetooth connectivity, making it an excellent choice for prototyping and developing smart devices. The board features multiple GPIO pins, enabling seamless integration with sensors, actuators, and other peripherals.
Parameter | Specification |
---|---|
Microcontroller | ESP32-WROOM-32 |
Wireless Connectivity | Wi-Fi 802.11 b/g/n, Bluetooth v4.2 |
Operating Voltage | 3.3V |
Input Voltage (via USB) | 5V |
GPIO Pins | 30 (including ADC, DAC, PWM, I2C, SPI) |
Flash Memory | 4MB |
Clock Speed | 240 MHz |
Power Consumption | ~500 mA (peak during Wi-Fi operation) |
Dimensions | 54mm x 25mm |
The uPesy Wroom DevKit V2 features a total of 30 GPIO pins, each with specific functions. Below is the pinout description:
Pin Number | Pin Name | Functionality |
---|---|---|
1 | GND | Ground |
2 | 3V3 | 3.3V Power Output |
3 | EN | Enable Pin (Active High) |
4 | IO0 | GPIO0, Boot Mode Selection |
5 | IO2 | GPIO2, ADC, PWM |
6 | IO4 | GPIO4, ADC, PWM |
7 | IO5 | GPIO5, ADC, PWM |
8 | IO12 | GPIO12, ADC, PWM |
9 | IO13 | GPIO13, ADC, PWM |
10 | IO14 | GPIO14, ADC, PWM |
11 | IO15 | GPIO15, ADC, PWM |
12 | IO16 | GPIO16, UART RX |
13 | IO17 | GPIO17, UART TX |
14 | IO18 | GPIO18, SPI CLK |
15 | IO19 | GPIO19, SPI MISO |
16 | IO21 | GPIO21, I2C SDA |
17 | IO22 | GPIO22, I2C SCL |
18 | IO23 | GPIO23, SPI MOSI |
19 | IO25 | GPIO25, DAC1, ADC |
20 | IO26 | GPIO26, DAC2, ADC |
21 | IO27 | GPIO27, ADC |
22 | IO32 | GPIO32, ADC |
23 | IO33 | GPIO33, ADC |
24 | IO34 | GPIO34, ADC (Input Only) |
25 | IO35 | GPIO35, ADC (Input Only) |
26 | VIN | Input Voltage (5V via USB or Pin) |
27 | TX0 | UART TX0 |
28 | RX0 | UART RX0 |
29 | BOOT | Boot Mode Button |
30 | RST | Reset Button |
Powering the Board:
Programming the Board:
Connecting Peripherals:
Boot and Reset:
Below is an example of using the uPesy Wroom DevKit V2 to blink an LED connected to GPIO2:
// Define the GPIO pin for the LED
const int ledPin = 2;
void setup() {
// Initialize the GPIO pin as an output
pinMode(ledPin, OUTPUT);
}
void loop() {
// Turn the LED on
digitalWrite(ledPin, HIGH);
delay(1000); // Wait for 1 second
// Turn the LED off
digitalWrite(ledPin, LOW);
delay(1000); // Wait for 1 second
}
Board Not Detected by Computer:
Code Upload Fails:
Wi-Fi Connection Issues:
GPIO Pin Not Working:
Q: Can I power the board with a battery?
A: Yes, you can use a 3.7V LiPo battery connected to the 3V3 pin or a 5V source connected to the VIN pin.
Q: Does the board support OTA updates?
A: Yes, the ESP32 module supports Over-The-Air (OTA) updates. You can configure this in your code.
Q: Can I use 5V sensors with this board?
A: Directly connecting 5V sensors to GPIO pins is not recommended. Use a level shifter to step down the voltage to 3.3V.
Q: How do I use the Bluetooth functionality?
A: The ESP32 supports Bluetooth Classic and BLE. Use the BluetoothSerial or BLE library in the Arduino IDE to implement Bluetooth features.