//JUDUL: MEMBUAT LED BERKEDIP-KEDIP
//NAMA: DONNY AULIYA ARROHMAN
//KELAS: 93
//NO ABSEN: 7
const int LMERAH = 9; //
void setup() {
// put your setup code here, to run once:
pinMode(LMERAH, OUTPUT);
}
void loop() {
// put your main code here, to run repeatedly:
digitalWrite(LMERAH, HIGH);
delay(600);
digitalWrite(LMERAH, LOW);
delay(300);
}