

The Fuse ATO is a blade-type fuse designed to protect electrical circuits by breaking the connection when excessive current flows. It is commonly used in automotive applications, such as cars, trucks, and motorcycles, to safeguard wiring and components from damage caused by overcurrent or short circuits. The Fuse ATO is compact, reliable, and easy to replace, making it a popular choice for circuit protection in low-voltage DC systems.








The Fuse ATO is available in various current ratings to suit different applications. Below are the general technical specifications:
| Parameter | Specification |
|---|---|
| Voltage Rating | 32V DC |
| Current Ratings | 1A, 2A, 3A, 5A, 7.5A, 10A, 15A, 20A, 25A, 30A |
| Interrupting Rating | 1000A @ 32V DC |
| Operating Temperature | -40°C to +105°C |
| Material | Plastic housing with zinc or copper alloy terminals |
| Dimensions | 19.1mm (L) x 5.1mm (W) x 18.5mm (H) |
The Fuse ATO has two blade terminals that connect to the fuse holder or circuit. Below is the pin configuration:
| Pin | Description |
|---|---|
| Blade 1 | Input terminal (connects to power source) |
| Blade 2 | Output terminal (connects to the load) |
When powering an Arduino UNO from a 12V battery, you can use a Fuse ATO to protect the circuit. Below is an example wiring diagram and code:
// Example code for Arduino UNO with a Fuse ATO in the power supply circuit
// This code blinks an LED connected to pin 13
void setup() {
pinMode(13, OUTPUT); // Set pin 13 as an output for the LED
}
void loop() {
digitalWrite(13, HIGH); // Turn the LED on
delay(1000); // Wait for 1 second
digitalWrite(13, LOW); // Turn the LED off
delay(1000); // Wait for 1 second
}
Fuse Blows Repeatedly:
Fuse Does Not Blow During Overcurrent:
Fuse is Loose in the Holder:
Fuse Housing is Discolored or Melted:
Q: Can I use a Fuse ATO in AC circuits?
A: No, the Fuse ATO is designed for low-voltage DC circuits with a maximum voltage rating of 32V DC. It is not suitable for AC applications.
Q: How do I know if a Fuse ATO is blown?
A: Inspect the fuse visually. A blown fuse will have a broken or melted internal element. You can also use a multimeter to check for continuity.
Q: Can I replace a Fuse ATO with a higher-rated fuse?
A: Only if the circuit can safely handle the higher current. Using a fuse with an excessively high rating can compromise circuit protection.
Q: Are Fuse ATOs reusable?
A: No, Fuse ATOs are single-use components. Once blown, they must be replaced with a new fuse of the same rating.