On-Board LED Blinking works:
#define LED_PIN 22 // Pin number for your built-in LED void setup() { pinMode(LED_PIN, OUTPUT); // Set the LED pin as an output } void loop() { digitalWrite(LED_PIN, HIGH); // Turn the LED on delay(500); // Wait 500 milliseconds digitalWrite(LED_PIN, LOW); // Turn the LED off delay(500); // Wait 500 milliseconds }
/MP3/0001.mp3