// RGB and R, G, B LED demo
const int pinR = 3;
const int pinG = 5;
const int pinB = 6;
void setup() {
pinMode(pinR, OUTPUT);
pinMode(pinG, OUTPUT);
pinMode(pinB, OUTPUT);
}
void loop() {
analogWrite(pinR, 222);
analogWrite(pinG, 6);
analogWrite(pinB, 222);
}