

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 electronic components from damage caused by overcurrent or short circuits. The Fuse ATO is compact, reliable, and easy to replace, making it a standard choice for automotive and 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 |
| Breaking Capacity | 1000A @ 32V DC |
| Operating Temperature | -40°C to +105°C |
| Material | Plastic housing with zinc or copper alloy terminals |
| Dimensions | 19.1mm x 5.1mm x 18.5mm |
| Mounting Type | Blade-type, fits into standard ATO fuse holders |
The Fuse ATO has two blade terminals that connect to the circuit. Below is the pin configuration:
| Pin | Description |
|---|---|
| Blade 1 | Connects to the power source |
| Blade 2 | Connects to the load or circuit |
When connecting an Arduino UNO to a power source, you can use a Fuse ATO to protect the board from overcurrent. Below is an example circuit:
// Example Arduino code to demonstrate a simple circuit
// This code blinks an LED connected to pin 13
void setup() {
pinMode(13, OUTPUT); // Set pin 13 as an output
}
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 Immediately After Installation
Fuse Does Not Blow Despite Overcurrent
Fuse Holder Overheats
Q: Can I use a Fuse ATO in AC circuits?
A: No, the Fuse ATO is designed for DC circuits with a maximum voltage of 32V.
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: No, using a higher-rated fuse can compromise circuit protection and increase the risk of damage or fire.
By following this documentation, you can effectively use the Fuse ATO to protect your circuits and ensure safe operation.