#include "fungsi.h"
void setup() {
// put your setup code here, to run once:
Serial.begin(115200);
pinMode(25, OUTPUT);
pinMode(26, OUTPUT);
pinMode(27, OUTPUT);
for (int angka1 = 0; angka1 <= 5; angka1++){
Serial.println(angka1);
RGB (1,0,0);
RGB (0,1,0);
RGB (0,0,1);
RGB (1,1,0);
RGB (0,1,1);
RGB (1,0,1);
RGB (1,1,1);
}
Serial.println("Selesai");
}
void loop() {
}