

The JK BLD 750 is a high-performance relay or contactor designed for switching applications in electrical circuits. It is capable of handling high current loads, making it ideal for industrial automation and control systems. This component is widely used in applications requiring reliable and efficient switching, such as motor control, power distribution, and industrial machinery.








| Parameter | Value |
|---|---|
| Manufacturer | NILL |
| Part ID | BLD-750 |
| Type | Relay/Contactor |
| Rated Voltage | 24V DC (coil voltage) |
| Switching Voltage | Up to 250V AC / 30V DC |
| Rated Current | 50A (maximum load current) |
| Contact Configuration | SPST (Single Pole Single Throw) |
| Coil Resistance | 320Ω ± 10% |
| Operating Temperature | -40°C to +85°C |
| Insulation Resistance | ≥ 100MΩ at 500V DC |
| Mechanical Life | 10 million operations |
| Electrical Life | 100,000 operations (at full load) |
| Pin Number | Pin 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 load circuit |
| 4 | Normally Open (NO) | Connects to COM when the relay is activated |
Below is an example of how to control the JK BLD 750 using an Arduino UNO:
// Define the pin connected to the relay coil
const int relayPin = 7;
void setup() {
pinMode(relayPin, OUTPUT); // Set the relay pin as an output
digitalWrite(relayPin, LOW); // Ensure the relay is off initially
}
void loop() {
digitalWrite(relayPin, HIGH); // Activate the relay
delay(5000); // Keep the relay on for 5 seconds
digitalWrite(relayPin, LOW); // Deactivate the relay
delay(5000); // Keep the relay off for 5 seconds
}
Note: Use a transistor or relay driver circuit to interface the Arduino with the JK BLD 750, as the Arduino's GPIO pins cannot directly supply the required current for the relay coil.
Relay Not Activating:
Excessive Heating:
Contact Sticking:
Noise or Chattering:
Q: Can the JK BLD 750 be used with AC loads?
Q: Is the relay suitable for outdoor use?
Q: What is the recommended wire gauge for the load circuit?
Q: Can I use a 12V power supply for the coil?
This concludes the documentation for the JK BLD 750. For further assistance, consult your circuit design requirements or seek professional advice.