X-Git-Url: http://git.piffa.net/web?a=blobdiff_plain;f=aerei%2Fantonino%2Fbugatti%2Fbugatti.ino;fp=aerei%2Fantonino%2Fbugatti%2Fbugatti.ino;h=b890380ab7086a7580060912c82d4c1029f740a9;hb=e807056b9281f933e9cd2df419e1a7bc5bb860b1;hp=00d32d94b5f8ebed8f6d962fc6bfe6e07fbc51b5;hpb=2567a70e87b22afb98d8015208711a9213733334;p=aerei diff --git a/aerei/antonino/bugatti/bugatti.ino b/aerei/antonino/bugatti/bugatti.ino index 00d32d9..b890380 100644 --- a/aerei/antonino/bugatti/bugatti.ino +++ b/aerei/antonino/bugatti/bugatti.ino @@ -36,6 +36,13 @@ void setup() { // per avere 2 LED che lampeggiano alternativamente randomSeed(analogRead(0)); + + // Test iniziale dei LED per verifica contatti: + left.High(); + right.High(); + sotto.White(); + motore.Set(255); + delay(4000); } void loop() { @@ -45,7 +52,7 @@ void loop() { thr = map(thrIn, 983, 2000, 0, 255); // Gestione throttle - if (thr > 0 && thr < 15) { + if (thr >= 0 && thr < 15) { // IDLE right.Blink();