The 1-kanaals 3V relais module by Kiwi is a single-channel relay module designed to operate at a low voltage of 3V. This module is ideal for controlling high-voltage devices using low-voltage signals, making it a versatile component in automation and control systems. It acts as an electrically operated switch, allowing microcontrollers or other low-power devices to safely control high-power circuits.
The following table outlines the key technical details of the 1-kanaals 3V relais module:
Parameter | Specification |
---|---|
Operating Voltage | 3V DC |
Trigger Voltage | 2.7V to 3.3V DC |
Maximum Load Voltage | 250V AC / 30V DC |
Maximum Load Current | 10A |
Relay Type | SPDT (Single Pole Double Throw) |
Isolation | Optocoupler isolation for safety |
Dimensions | 50mm x 26mm x 18mm |
Weight | ~15g |
The module has a total of 6 pins and terminals, as described below:
Pin | Name | Description |
---|---|---|
1 | VCC | Connect to a 3V DC power supply (positive terminal). |
2 | GND | Connect to the ground of the power supply. |
3 | IN | Signal input pin. A HIGH signal activates the relay, and a LOW signal deactivates it. |
Terminal | Name | Description |
---|---|---|
1 | COM | Common terminal for the relay switch. |
2 | NO | Normally Open terminal. Connect the load here if you want it to be OFF by default. |
3 | NC | Normally Closed terminal. Connect the load here if you want it to be ON by default. |
Below is an example of how to control the relay module 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
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:
False Triggering:
Load Not Switching:
Overheating:
Q1: Can I use this relay module with a 5V microcontroller?
A1: Yes, but you will need a level shifter or resistor divider to step down the control signal to 3V.
Q2: Is the relay module safe for switching AC loads?
A2: Yes, it can handle up to 250V AC, but ensure proper insulation and safety precautions.
Q3: Can I control multiple relays with one microcontroller?
A3: Yes, as long as each relay has its own control pin and the microcontroller can supply sufficient current.
Q4: What is the purpose of the optocoupler?
A4: The optocoupler provides electrical isolation between the low-voltage control circuit and the high-voltage load circuit, enhancing safety.