

A blade fuse is a type of electrical fuse with a plastic body and two metal prongs. It is designed to protect electrical circuits by breaking the circuit when excessive current flows through it, thereby preventing damage to connected components or wiring. Blade fuses are widely used in automotive, marine, and industrial applications due to their compact size, ease of replacement, and reliable performance.








Blade fuses come in various sizes and current ratings to suit different applications. Below are the key technical details:
Blade fuses are categorized into different sizes, each with specific dimensions and current ratings. The table below outlines the most common types:
| Fuse Type | Dimensions (mm) | Current Ratings (A) | Common Applications |
|---|---|---|---|
| Mini (ATM) | 10.9 x 3.6 x 16 | 1A to 30A | Compact automotive circuits |
| Standard (ATO) | 19.1 x 5.1 x 18 | 1A to 40A | General automotive use |
| Maxi | 29.2 x 8.4 x 34 | 20A to 100A | High-current applications |
Blade fuses have two metal prongs that serve as the electrical terminals. The table below describes their function:
| Pin Name | Description |
|---|---|
| Prong 1 | Connects to the power source |
| Prong 2 | Connects to the load (protected side) |
When connecting an Arduino UNO to a motor or other high-current device, a blade fuse can protect the circuit. Below is an example of how to wire a blade fuse in such a setup:
// Example code for controlling a motor with an Arduino UNO
// Ensure a blade fuse is used to protect the motor circuit
const int motorPin = 9; // Pin connected to motor driver input
void setup() {
pinMode(motorPin, OUTPUT); // Set motor pin as output
}
void loop() {
digitalWrite(motorPin, HIGH); // Turn motor on
delay(1000); // Run motor for 1 second
digitalWrite(motorPin, LOW); // Turn motor off
delay(1000); // Wait for 1 second
}
Note: Ensure the blade fuse is rated for the motor's current draw to prevent nuisance tripping.
Fuse Blows Repeatedly
Fuse Does Not Blow When Expected
Corroded Fuse Prongs
Q: Can I use a blade fuse in an AC circuit?
A: Blade fuses are typically designed for DC circuits. For AC applications, use a fuse specifically rated for AC voltage.
Q: How do I know if a blade fuse is blown?
A: Inspect the fuse visually. A blown fuse will have a broken or melted metal strip inside the plastic body. Alternatively, use a multimeter to check for continuity.
Q: Can I replace a blade fuse with a circuit breaker?
A: Yes, in some cases, a circuit breaker can replace a blade fuse, but ensure the breaker is compatible with the circuit's voltage and current requirements.