#include "Arduino.h"
#include <FastLED.h>
#define LED_PIN 2 //LED Strip Signal Connection
#define DRLSignal 3 //DRL Switch Signal Connection
#define LeftSignal 5 //Left Blinker Signal Connection
#define RightSignal 7 //Right Blinker Signal Connection
#define NUM_LEDS 40 //Total no of LEDs in two LED strips (eg. Use 40 here for two 20 LED strips)
#define BlinkerLEDs NUM_LEDS/2
int BlinkerSpeed = 30; //Turn Signal Running LED Speed. Adjust this to match with your vehicle turn signal speed.
int BlinkerOffDelay = 250; //Turn Signal Off time. Adjust this to match with your vehicle turn signal speed.
int StartupSpeed = 25;
int DRLDetect = 0;
int DRLColour = 1; //Change LED colour here, 1-Ice Blue, 2-Blue, 3-White, 4-Orange