The Mtiny ESP32 WROVER-IE is a compact and powerful microcontroller board designed by Makerlabvn. It features the ESP32 WROVER-IE module, which is known for its combination of Wi-Fi, Bluetooth, and a rich set of peripherals. This board is ideal for a wide range of applications, including Internet of Things (IoT) devices, wearable electronics, smart home applications, and complex control systems.
Pin Number | Function | Description |
---|---|---|
1 | 3.3V | Power supply for the board |
2 | GND | Ground |
3-14 | GPIO0 - GPIO11 | General Purpose Input/Output Pins |
15 | ADC2_CH1 | Analog to Digital Converter, Channel 1 |
16 | ADC2_CH2 | Analog to Digital Converter, Channel 2 |
... | ... | ... |
25 | VIN | Voltage Input for the board |
Note: This is a simplified representation. Please refer to the official pinout diagram for complete details.
To use the Mtiny ESP32 WROVER-IE in a circuit:
#include <WiFi.h>
// Replace with your network credentials
const char* ssid = "your_SSID";
const char* password = "your_PASSWORD";
void setup() {
Serial.begin(115200);
// Connect to Wi-Fi
WiFi.begin(ssid, password);
while (WiFi.status() != WL_CONNECTED) {
delay(500);
Serial.println("Connecting to WiFi...");
}
Serial.println("Connected to WiFi");
}
void loop() {
// Put your main code here, to run repeatedly:
}
Q: Can the Mtiny ESP32 WROVER-IE be used with the Arduino IDE? A: Yes, it is compatible with the Arduino IDE. Make sure to install the ESP32 board package.
Q: What is the maximum voltage that can be applied to the GPIO pins? A: The maximum voltage for the GPIO pins is 3.3V. Applying more can damage the board.
Q: How can I enable Bluetooth functionality?
A: Bluetooth can be enabled using the BluetoothSerial.h
library in the Arduino IDE.
For further assistance, please refer to the Makerlabvn support forums or contact technical support.