/*
Code is a blatant copy, only for testing purposes.
Switches represent L + R turn signals and running lights.
Curcuit uses 3 five-pin relays to send turn signals over running light circuits.
*/
const int FlashPin = 13; // Pin for flasher output, set to internal LED
const long Blink = 400; // Blink speed
void setup() {
pinMode(FlashPin, OUTPUT);
}
// the loop function runs over and over again forever
void loop() {
digitalWrite(FlashPin, HIGH); // turn the LED on (HIGH is the voltage level)
delay(Blink); // wait for a second
digitalWrite(FlashPin, LOW); // turn the LED off by making the voltage LOW
delay(Blink); // wait for a second
}