

The 12V/24V 6-Way Blade Fuse Block with LED Indicator is a compact and efficient solution for managing multiple electrical circuits in automotive, marine, and industrial applications. This fuse block is designed to accommodate up to six standard blade fuses, providing overcurrent protection for individual circuits. The built-in LED indicators simplify troubleshooting by illuminating when a fuse is blown, allowing for quick identification and replacement.








| Parameter | Specification |
|---|---|
| Operating Voltage | 12V / 24V DC |
| Maximum Current per Fuse | 30A |
| Total Current Capacity | 100A |
| Fuse Type | Standard blade fuses (ATO/ATC) |
| LED Indicator Voltage | 12V / 24V DC (matches system) |
| Material | Flame-retardant plastic housing |
| Mounting Options | Screw-mounted |
| Dimensions | Varies by model (e.g., 95x85x35mm) |
The fuse block features a simple layout for easy installation and wiring. Below is a description of the terminals and their functions:
| Terminal Name | Description |
|---|---|
| Positive Bus | Main positive input terminal for connecting the power source (12V/24V DC). |
| Negative Bus | Common ground terminal for connecting the negative side of the circuit. |
| Fuse Slots | Six slots for standard blade fuses, each protecting an individual circuit. |
| Output Terminals | Six output terminals corresponding to each fuse slot. |
| LED Indicators | One LED per fuse slot, lights up when the corresponding fuse is blown. |
Positive Bus terminal.Negative Bus terminal.Output Terminals.Negative Bus terminal.The fuse block can be used to protect circuits connected to an Arduino UNO. Below is an example of wiring and code to monitor a simple LED circuit:
Positive Bus terminal to a 12V DC power source.Negative Bus terminal to the ground of the power source.Negative Bus.// Example code to blink an LED connected to a fuse-protected circuit
const int ledPin = 13; // Pin connected to the LED
void setup() {
pinMode(ledPin, OUTPUT); // Set the LED pin as an output
}
void loop() {
digitalWrite(ledPin, HIGH); // Turn the LED on
delay(1000); // Wait for 1 second
digitalWrite(ledPin, LOW); // Turn the LED off
delay(1000); // Wait for 1 second
}
| Issue | Possible Cause | Solution |
|---|---|---|
| LED indicator does not light up when a fuse blows | Faulty LED or incorrect wiring | Check the wiring and replace the LED if necessary. |
| Fuse blows frequently | Overcurrent in the circuit | Verify the circuit's current draw and use a fuse with the correct rating. |
| No power to connected circuits | Loose connections or blown fuse | Inspect all connections and replace any blown fuses. |
| LED indicators light up incorrectly | Incorrect polarity or wiring error | Ensure proper polarity and verify all connections. |
Can I use this fuse block for AC circuits?
What happens if I use a fuse with a higher rating than required?
Can I use fewer than six fuses?
Is the fuse block waterproof?