The NEROMART NER-13709 is a single-channel relay module designed to control high-power devices using low-power control signals. Operating at 5V, this relay can handle loads of up to 30A, making it ideal for switching high-current devices such as motors, heaters, lights, and other appliances. Its compact design and high current capacity make it a versatile component for home automation, industrial control systems, and DIY electronics projects.
Below are the key technical details of the NEROMART NER-13709 relay module:
Parameter | Specification |
---|---|
Operating Voltage | 5V DC |
Maximum Load Current | 30A |
Maximum Load Voltage | 250V AC / 30V DC |
Control Signal Voltage | 3.3V to 5V DC |
Relay Type | SPDT (Single Pole Double Throw) |
Dimensions | 50mm x 26mm x 18mm |
Isolation | Optocoupler isolation for safety |
Trigger Type | Active Low |
Operating Temperature | -40°C to 85°C |
The relay module has 6 pins and terminals, as described in the table below:
Pin/Terminal | Description |
---|---|
VCC | Connect to the 5V power supply. |
GND | Connect to the ground of the power supply. |
IN | Control signal input (active low). Connect to a microcontroller or control pin. |
COM | Common terminal for the relay 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 using an Arduino UNO:
// Example: Controlling a 1-Channel 5V 30A Relay with Arduino UNO
// Manufacturer: NEROMART
// Part ID: NER-13709
const int relayPin = 7; // Pin connected to the relay module's IN pin
void setup() {
pinMode(relayPin, OUTPUT); // Set the relay pin as an output
digitalWrite(relayPin, HIGH); // Ensure the relay is off initially
}
void loop() {
digitalWrite(relayPin, LOW); // Turn the relay ON (active low)
delay(5000); // Keep the relay on for 5 seconds
digitalWrite(relayPin, HIGH); // Turn the relay OFF
delay(5000); // Keep the relay off for 5 seconds
}
Relay Not Switching
Load Not Turning On/Off
Overheating
Arduino Resets When Relay Activates
Can I use this relay with a 3.3V microcontroller?
Is the relay safe for inductive loads like motors?
Can I control multiple relays with one Arduino?
What happens if I connect both NO and NC terminals?
By following this documentation, you can effectively use the NEROMART NER-13709 relay module in your projects.