int r=16;
int b=18;
int g=17;
void setup() {
// put your setup code here, to run once:
Serial.begin(115200);
pinMode(r, OUTPUT);
pinMode(g, OUTPUT);
pinMode(b, OUTPUT);
analogWrite(r,40);
analogWrite(g,99);
analogWrite(b,142);
}
void loop() {
// put your main code here, to run repeatedly:
delay(10); // this speeds up the simulation
}