The HAfiHA JDM11-6H, manufactured by Cikachi, is a high-performance relay designed for switching applications. It features low power consumption, high reliability, and a compact design, making it ideal for use in a wide range of electronic circuits and automation systems. This relay is particularly suited for applications requiring precise control and durability, such as industrial automation, home appliances, and control panels.
Parameter | Value |
---|---|
Manufacturer | Cikachi |
Part Number | JDM11-6H |
Operating Voltage | 12V DC / 24V DC / 220V AC |
Contact Configuration | SPDT (Single Pole Double Throw) |
Contact Rating | 5A at 250V AC / 30V DC |
Coil Power Consumption | 0.9W |
Insulation Resistance | ≥ 100MΩ at 500V DC |
Dielectric Strength | 1500V AC for 1 minute |
Operating Temperature | -10°C to +55°C |
Dimensions | 28mm x 12mm x 15mm |
Weight | 15g |
The HAfiHA JDM11-6H relay has a standard pinout for SPDT relays. Below is the pin configuration:
Pin Number | Name | Description |
---|---|---|
1 | Coil (+) | Positive terminal of the relay coil |
2 | Coil (-) | Negative terminal of the relay coil |
3 | Common (COM) | Common terminal for the switching contacts |
4 | Normally Open (NO) | Contact that is open when the relay is inactive |
5 | Normally Closed (NC) | Contact that is closed when the relay is inactive |
Below is an example of how to control the relay using an Arduino UNO:
// Define the pin connected to the relay's coil
const int relayPin = 7;
void setup() {
// Set the relay pin as an output
pinMode(relayPin, OUTPUT);
}
void loop() {
// Activate the relay (coil energized)
digitalWrite(relayPin, HIGH);
delay(1000); // Keep the relay on for 1 second
// Deactivate the relay (coil de-energized)
digitalWrite(relayPin, LOW);
delay(1000); // Keep the relay off for 1 second
}
Note: Use a transistor or relay driver circuit to interface the Arduino with the relay, as the Arduino's GPIO pins cannot directly supply enough current to energize the relay coil.
Relay Not Switching:
Load Not Powered:
Relay Buzzing Noise:
Overheating:
Q: Can I use the HAfiHA JDM11-6H with an AC load?
Q: Do I need a flyback diode for an AC coil?
Q: Can I use this relay for high-frequency switching?
Q: How do I identify the coil voltage variant of my relay?