Arduino as ISP fix for 328

Now it should work with 32u4, 16u2 and 328 and probably others as well
This commit is contained in:
Nico 2015-02-17 08:22:00 +01:00
parent 619bdf633b
commit d27720ec91

View file

@ -120,7 +120,7 @@ void heartbeat() {
if (hbval < 32) hbdelta = -hbdelta;
hbval += hbdelta;
analogWrite(LED_HB, hbval);
delay(40);
delay(20);
}