

The RELAY 3.3V, manufactured by ESP32, is an electromechanical switch designed to control high voltage or high current devices using a low voltage signal. It operates at a control voltage of 3.3V, making it ideal for integration with microcontrollers like the ESP32 or Arduino. The relay provides electrical isolation between the control circuit and the load, ensuring safety and reliability in various applications.








The following table outlines the key technical details of the RELAY 3.3V:
| Parameter | Value |
|---|---|
| Operating Voltage | 3.3V DC |
| Trigger Current | ~70mA |
| Contact Voltage Rating | Up to 250V AC / 30V DC |
| Contact Current Rating | Up to 10A |
| Relay Type | SPDT (Single Pole Double Throw) |
| Electrical Isolation | Optocoupler-based isolation |
| Dimensions | 28mm x 12mm x 10mm |
| Operating Temperature | -40°C to 85°C |
The RELAY 3.3V typically has the following pin configuration:
| Pin Name | Description |
|---|---|
| VCC | Connect to 3.3V power supply. This powers the relay's internal circuitry. |
| GND | Connect to ground. |
| IN | Control signal input. A HIGH signal (3.3V) activates the relay. |
| COM | Common terminal for the relay's switch. |
| NO | Normally Open terminal. Connect the load here if it should be OFF by default. |
| NC | Normally Closed terminal. Connect the load here if it should be ON by default. |
Below is an example of how to control the RELAY 3.3V using an Arduino UNO:
// Define the pin connected to the relay's IN pin
const int relayPin = 7;
void setup() {
// Set the relay pin as an output
pinMode(relayPin, OUTPUT);
// Ensure the relay is OFF at startup
digitalWrite(relayPin, LOW);
}
void loop() {
// Turn the relay ON
digitalWrite(relayPin, HIGH);
delay(5000); // Keep the relay ON for 5 seconds
// Turn the relay OFF
digitalWrite(relayPin, LOW);
delay(5000); // Keep the relay OFF for 5 seconds
}
Relay Not Activating:
Load Not Switching:
Relay Stuck in One State:
Microcontroller Resetting When Relay Activates:
Q1: Can I use the RELAY 3.3V with a 5V microcontroller?
A1: Yes, but you must use a level shifter or resistor divider to step down the 5V control signal to 3.3V.
Q2: Is the relay suitable for AC loads?
A2: Yes, the relay can handle AC loads up to 250V, provided the current does not exceed 10A.
Q3: Can I control multiple relays with one microcontroller?
A3: Yes, as long as each relay is connected to a separate GPIO pin and the microcontroller can supply sufficient current.
Q4: Does the relay make a clicking sound when switching?
A4: Yes, the clicking sound is normal and indicates the mechanical switch inside the relay is operating.