

A resettable fuse, also known as a polymeric positive temperature coefficient (PTC) device, is a protective component designed to limit current flow in a circuit. When the current exceeds a predefined threshold, the fuse heats up and its resistance increases significantly, effectively shutting off the current. Once the fault condition is resolved and the device cools down, it resets automatically, allowing the circuit to resume normal operation.








Resettable fuses are typically two-terminal devices. Below is a general description of the pins:
| Pin Number | Pin Name | Description |
|---|---|---|
| 1 | Terminal 1 | Connects to the power source or load |
| 2 | Terminal 2 | Connects to the circuit to be protected |
Determine the Required Specifications:
Placement in the Circuit:
Soldering and Mounting:
Testing:
Below is an example of how to use a resettable fuse to protect an Arduino UNO from overcurrent:
// Example code to demonstrate normal operation of an Arduino UNO
// protected by a resettable fuse in case of overcurrent conditions.
void setup() {
pinMode(13, OUTPUT); // Set pin 13 as an output (connected to an 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
}
// Note: If an overcurrent condition occurs, the PTC fuse will trip,
// cutting off power to the Arduino. Once the fault is cleared and
// the fuse resets, the Arduino will resume normal operation.
PTC Fuse Does Not Reset:
Frequent Tripping:
High Resistance After Reset:
Fuse Does Not Trip During Overcurrent:
Q1: Can a resettable fuse be used in AC circuits?
A1: Yes, resettable fuses can be used in AC circuits, but ensure the voltage and current ratings are suitable for the application.
Q2: How many times can a resettable fuse trip and reset?
A2: Most PTC fuses can trip and reset hundreds to thousands of times, depending on the operating conditions and the severity of the faults.
Q3: Can I use a resettable fuse to protect a motor?
A3: Yes, but ensure the inrush current of the motor does not exceed the trip current of the PTC fuse.
Q4: What happens if I exceed the maximum voltage rating of the PTC fuse?
A4: Exceeding the voltage rating can damage the PTC fuse and compromise its protective function. Always stay within the specified voltage range.