diff options
-rw-r--r-- | main.ino | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -19,16 +19,17 @@ const byte BUTTON_PIN_MOVE = BUTTON_1; const byte BUTTON_PIN_SELECT = BUTTON_2; const byte BUTTON_PIN_ACTION = BUTTON_3; BlinkControl led(LED_PIN); +#define LEDS_PIN 12 #define SERVO_PIN 5 // see ServoEasing PinDefinitionsAndMore.h #else const byte BUTTON_PIN_MOVE = 4; const byte BUTTON_PIN_SELECT = 5; const byte BUTTON_PIN_ACTION = 2; BlinkControl led(LED_BUILTIN); // pin 13 is built-in LED on many Arduino boards +#define LEDS_PIN 6 #define SERVO_PIN 9 // see ServoEasing PinDefinitionsAndMore.h #endif -#define LEDS_PIN 6 #define LEDS_AMOUNT 10 // serial port speed |