If you’ve ever configured the fuse bits of an ATtiny incorrectly — for example disabling the RESET pin or choosing the wrong clock source — regular ISP programming will fail. Your microcontroller will appear to be bricked. Luckily, there’s a reliable fix: the Arduino Nano HV Rescue Shield. By applying a 12 V “backdoor” you can reprogram the fuse bits and bring your ATtiny back to life.

What is the HV Rescue Shield?
An HV Rescue Shield is an add-on for (in this case) an Arduino Nano that makes it possible to use High-Voltage Serial Programming (HVSP) to reset the fuse bits of ATtiny microcontrollers. The trick? Supplying 12 V to the RESET pin, which forces the chip into programming mode even if ISP no longer works.
Why do you need this?
- You disabled the RESET pin to use it as a normal I/O.
- Incorrect fuse settings prevent ISP communication.
- HVSP is the only way to restore the factory defaults.
How it works – hardware
Components required:
- Arduino Nano
- 12 V supply (bench supply or DC-DC boost converter)
- P-channel MOSFET (logic-level type, e.g. AO3407A, IRLML6402, IRF9540N)
- Resistors:
– 1 kΩ (series resistor from MOSFET drain to RESET pin)
– 1 kΩ (series resistor from D8 to Gate) - Breadboard or perfboard
- Jumper wires
- (Optional) SOIC test clip for SMD packages
Alternative setup
If you don’t have a P-channel MOSFET (logic-level type, e.g. AO3407A, IRLML6402, IRF9540N) you can use a 2N2222 PNP transistor and a Relay, in this case an Omron G5V-1.
Pin Mapping (Arduino Nano → ATtiny85 DIP-8)
Arduino Nano pin | ATtiny85 pin | Function |
---|---|---|
D9 → SDI | Pin 5 | Data In |
D10 → SII | Pin 6 | Instruction In |
D11 → SDO | Pin 7 | Data Out |
D12 → SCI | Pin 2 | Clock |
D8 → P-MOSFET gate → 12 V → RESET | Pin 1 | 12 V reset pulse (LOW = 12 V ON) |
+5 V | Pin 8 | VCC |
GND | Pin 4 | GND (shared with 12 V source ground) |
Important: Use a P-channel MOSFET to connect/disconnect 12 V to the ATtiny RESET pin.
How it works – software (Arduino IDE)
With the hardware ready, we’ll use the HV Rescue sketch to restore safe fuse settings. The Arduino Nano drives the HVSP sequence; you trigger it from the Serial Monitor.
What you need (software)
- Arduino IDE
- This sketch (see code block below) — pre-mapped for Nano → ATtiny85
- Serial Monitor set to 9600 baud
Step 1 — Set up Arduino IDE
- Go to Tools → Board → select Arduino Nano.
- Tools → Processor → ATmega328P (Old Bootloader) (for most Nano clones).
- Tools → Port → select your Nano’s COM port.
- Later, set Serial Monitor baud rate to 9600.
Step 2 — Create a new sketch
- In Arduino IDE: File → New.
- Copy the full sketch below and paste it into the blank file.
- Save As…
HV_Rescue_Attiny
XX.
The sketch writes LFUSE = 0x62 and HFUSE = 0xDF (enough to unbrick). EFUSE is read only (usually already 0xFF
).
Step 3 — Upload
Click Upload and wait until “Done uploading”.
Step 4 — Run the rescue
- Double-check wiring, especially D8 → 12 V → RESET.
- Open Serial Monitor (9600 baud).
- You’ll see:
Enter a character to continue
→ press any key.

- The Nano will:
- briefly apply 12 V to RESET (via D8),
- read the ATtiny signature and current fuses,
- write LFUSE 0x62 and HFUSE 0xDF,
- read them back for verification.
Signs of success in Serial Monitor:
- Signature like
1E 93 0B/0C/0D
(ATtiny25/45/85) - Messages: “Writing hfuse/lfuse”
- Fuse reads like:
lfuse reads as 62
,hfuse reads as DF
- “Exiting programming Mode”

Step 5 — Back to ISP
- Remove the chip from the rescue setup.
- Connect your usual ISP programmer.
- Read the fuses again (just to confirm).
- Flash your project as normal.
- (Optional) Set EFUSE to
0xFF
via ISP — usually already correct, not required for unbricking.
Troubleshooting
- No text / gibberish? Serial Monitor not at 9600 baud or wrong COM port.
- Signature 0xFF / 0x00? Check SDI/SII/SDO/SCI wiring, chip orientation, and GND.
- Fuse verify fails? Ensure D8 really switches ~12 V to RESET during rescue.
- 12 V logic inverted? Swap HIGH/LOW logic for D8 in the sketch.
Why this shield is essential
- Unbricks ATtiny chips: Restore ISP access by resetting the RESET pin and fuse bits.
- Low-cost solution: Arduino Nano + a handful of components.
- Safe and repeatable: 12 V is only applied during the fuse programming sequence.
- Future-proof: Perfect tool for experimenting with fuse settings without fear of bricking chips permanently.
Conclusion
With an Arduino Nano HV Rescue Shield, you can easily revive “bricked” ATtiny microcontrollers. The combination of a 12 V reset pulse, serial communication, and a simple Arduino sketch makes this a powerful yet accessible solution.