// UNO kec 16 Mhz = 16.000.000 /detik
const uint8_t RED_PIN = 8; // inisialisasi pin
const uint8_t GREEN_PIN = 0; // inisialisasi pin
uint
void setup() {
// put your setup code here, to run once:
pinMode(RED_PIN, OUTPUT);
pinMode(GREEN_PIN, OUTPUT);
}
void loop() {
// put your main code here, to run repeatedly:
}