//Khalingga Bintang Maulia Agustian
//2021230022
//21/03/24
//testled
const int ledPin = 15; // Replace with the pin your LED is connected to
void setup() {
pinMode(ledPin, OUTPUT);
}
void loop() {
digitalWrite(ledPin, HIGH); // Turn the LED on
delay(1000); // Wait for 1 second
digitalWrite(ledPin, LOW); // Turn the LED off
delay(1000); // Wait for 1 second
}