From d27720ec916b5277d8ed2a46e936118f1cc65cfb Mon Sep 17 00:00:00 2001 From: Nico Date: Tue, 17 Feb 2015 08:22:00 +0100 Subject: [PATCH] Arduino as ISP fix for 328 Now it should work with 32u4, 16u2 and 328 and probably others as well --- examples/Projects/ArduinoISP/ArduinoISP.ino | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/Projects/ArduinoISP/ArduinoISP.ino b/examples/Projects/ArduinoISP/ArduinoISP.ino index 03a39d7..5a9266e 100644 --- a/examples/Projects/ArduinoISP/ArduinoISP.ino +++ b/examples/Projects/ArduinoISP/ArduinoISP.ino @@ -120,7 +120,7 @@ void heartbeat() { if (hbval < 32) hbdelta = -hbdelta; hbval += hbdelta; analogWrite(LED_HB, hbval); - delay(40); + delay(20); }