/*

Standard BLINK a LED sketch but this time on an Arduino Nano

*/


// The LED pin
int LED = 2;
// The delay between blinks in miliseconds
float delayTime = 1000;
  

// the setup function runs once when you press reset or power the board
void setup() {
  // initialize digital pin LED_BUILTIN as an output.
  pinMode(LED, OUTPUT);
}

// the loop function runs over and over again forever which sets the LED to HIGH (ON), delays,
// then sets the LED to LOW (OFF) then delays and repeats the loop.
void loop() {
  digitalWrite(LED, HIGH);  // turn the LED on (HIGH is the voltage level)
  delay(delayTime);                      // wait for a second
  digitalWrite(LED, LOW);   // turn the LED off by making the voltage LOW
  delay(delayTime);                      // wait for a second
}
$abcdeabcde151015202530354045505560fghijfghij