A Relay 3.3V is an electromechanical switch that uses a low voltage (3.3V) control signal to open or close a circuit. This allows for the control of higher voltage or high-current devices, such as motors, lights, or appliances, using a low-power control signal. Relays are widely used in automation, home appliances, and industrial control systems due to their ability to isolate the control circuit from the high-power circuit.
The following table outlines the key technical details of the Relay 3.3V:
Parameter | Value |
---|---|
Control Voltage | 3.3V DC |
Operating Current | ~70mA (coil current) |
Switching Voltage | Up to 250V AC / 30V DC |
Switching Current | Up to 10A |
Contact Type | SPDT (Single Pole Double Throw) or SPST (Single Pole Single Throw) |
Isolation | Electrical isolation between control and load circuits |
Coil Resistance | ~45Ω |
Operating Temperature | -40°C to 85°C |
Dimensions | Varies by model (e.g., 28mm x 12mm x 10mm) |
The Relay 3.3V typically has 5 pins. The table below describes each pin:
Pin Name | Description |
---|---|
VCC | Connects to the 3.3V power supply to energize the relay coil. |
GND | Ground connection for the relay coil. |
IN (Control) | Control signal input (3.3V logic HIGH activates the relay). |
COM (Common) | Common terminal for the load circuit. |
NO (Normally Open) | Load terminal that remains disconnected until the relay is activated. |
NC (Normally Closed) | Load terminal that remains connected until the relay is activated. |
Below is an example of how to connect and control a Relay 3.3V using an Arduino UNO:
// Define the relay control 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 (activate)
digitalWrite(relayPin, HIGH);
delay(5000); // Keep the relay on for 5 seconds
// Turn the relay off (deactivate)
digitalWrite(relayPin, LOW);
delay(5000); // Keep the relay off for 5 seconds
}
Relay Not Activating:
Load Not Switching:
Relay Clicking Rapidly:
Microcontroller Resetting:
Q: Can I use the Relay 3.3V with a 5V control signal?
A: No, the relay is designed for a 3.3V control signal. Using a 5V signal may damage the relay or cause erratic behavior.
Q: Can the Relay 3.3V switch both AC and DC loads?
A: Yes, the relay can switch AC loads up to 250V and DC loads up to 30V, provided the current does not exceed 10A.
Q: Do I need a separate power supply for the relay?
A: If your control circuit (e.g., Arduino) can provide a stable 3.3V and sufficient current, a separate power supply is not necessary. Otherwise, use an external 3.3V power source.
Q: How do I know if the relay is activated?
A: Many relays include an onboard LED that lights up when the relay is activated. Alternatively, you can measure continuity between the COM and NO pins.