

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 other 12V or 24V systems. This fuse block can accommodate up to six standard blade fuses, providing a centralized and organized way to protect circuits from overcurrent. The built-in LED indicators simplify troubleshooting by illuminating when a fuse is blown, allowing for quick identification and replacement.








The fuse block has a straightforward layout with input and output terminals for both positive and negative connections. Below is a detailed description:
| Pin/Terminal | Description |
|---|---|
| Positive Input | Connects to the positive terminal of the power source (12V or 24V). |
| Negative Input | Connects to the negative terminal (ground) of the power source. |
| Positive Outputs | Six terminals for connecting the positive wires of individual circuits. |
| Negative Outputs | Six terminals for connecting the negative wires of individual circuits. |
| Fuse Slots | Six slots for standard blade fuses (one per circuit). |
| LED Indicators | One LED per fuse slot; lights up when the corresponding fuse is blown. |
Mount the Fuse Block:
Connect the Power Source:
Install Blade Fuses:
Connect Circuits:
Test the Setup:
If you are using the fuse block to power multiple devices in an Arduino project, follow these steps:
Here is an example Arduino sketch to monitor a sensor powered through the fuse block:
// Example Arduino code to read a sensor powered via the fuse block
const int sensorPin = A0; // Analog pin connected to the sensor
int sensorValue = 0; // Variable to store the sensor reading
void setup() {
Serial.begin(9600); // Initialize serial communication
pinMode(sensorPin, INPUT); // Set the sensor pin as input
}
void loop() {
sensorValue = analogRead(sensorPin); // Read the sensor value
Serial.print("Sensor Value: ");
Serial.println(sensorValue); // Print the sensor value to the Serial Monitor
delay(1000); // Wait for 1 second before the next reading
}
LED Indicator Does Not Light Up When a Fuse is Blown:
Fuse Blows Repeatedly:
No Power to Connected Circuits:
Corrosion on Terminals:
Q: Can I use this fuse block for AC circuits?
A: No, this fuse block is designed for DC circuits only, specifically 12V or 24V systems.
Q: What happens if I install a fuse with a higher rating than required?
A: Using a fuse with a higher rating can result in insufficient protection for the circuit, potentially causing damage to connected devices.
Q: Can I use fewer than six fuses?
A: Yes, you can use as many or as few fuses as needed. Unused slots will remain inactive.
Q: Is the fuse block waterproof?
A: No, the fuse block is not waterproof. It should be installed in a dry and protected location.