Tugas Pendahuluan Modul 1



 Tugas Pendahuluan : Percobaan 1 Modul 1 Kondisi 11 dengan Kondisi awal LED mati lalu hidup dengan delay 5 detik / 5000 ms.

LED Mati


LED Hidup

int led []={2,3,4,5,6,7,8,9};
void setup() {
for (int i=0;i<8;i++)
{
  pinMode(led[i],OUTPUT); // mengatur led digital sebagai output
}
}
void loop() {
for(int hidup=0;hidup<8;hidup++)
{
  digitalWrite(led[hidup],HIGH);  // set the LED on
}
delay(5000); // tunggu selama lima detik
for(int mati=0;mati<8;mati++) 
{
  digitalWrite(led[mati],LOW);  // set the LED off
}
delay(5000);  // tunggu selama lima detik
}





Rangkaian Simulasi Proteus [  ]
Video Simulasi [  ]
HTML [ ]
 

Tidak ada komentar:

Posting Komentar