The RELAY KAKI 4 is an electrically operated switch manufactured by 12V. It is designed to control a circuit by a low-power signal or to control several circuits with a single signal. Relays are essential components in various applications, including home automation, industrial control systems, and automotive electronics.
Parameter | Value |
---|---|
Operating Voltage | 12V DC |
Coil Resistance | 400 Ohms |
Contact Rating | 10A at 250V AC |
Contact Type | SPDT (Single Pole Double Throw) |
Switching Voltage | 250V AC / 30V DC |
Switching Current | 10A |
Operating Temperature | -40°C to 85°C |
Dimensions | 28mm x 12mm x 15mm |
Pin Number | Pin Name | Description |
---|---|---|
1 | Coil+ | Positive terminal of the relay coil |
2 | Coil- | Negative terminal of the relay coil |
3 | COM | Common terminal |
4 | NO | Normally Open contact |
5 | NC | Normally Closed contact |
Power the Relay Coil:
Control the Load:
Control Signal:
/*
* Example code to control a RELAY KAKI 4 with an Arduino UNO.
* The relay is connected to pin 7 of the Arduino.
*/
const int relayPin = 7; // Pin connected to the relay
void setup() {
pinMode(relayPin, OUTPUT); // Set the relay pin as an output
}
void loop() {
digitalWrite(relayPin, HIGH); // Turn the relay on
delay(1000); // Wait for 1 second
digitalWrite(relayPin, LOW); // Turn the relay off
delay(1000); // Wait for 1 second
}
Relay Not Switching:
Load Not Responding:
Relay Chattering:
By following this documentation, users can effectively integrate the RELAY KAKI 4 into their projects, ensuring reliable and efficient operation.