//Teknik Pemprograman
//Arduino untuk Pemula
const int pinLED =8;
void setup() {
//put your setup code here,to run once:
pinMode(pinLED, OUTPUT);
}
void loop() {
//put your main code here, to run repeatedly:
digitalWrite(pinLED, HIGH);
delay(200);
digitalWrite(pinLED, LOW);
delay(200);
}