const int pinR = 11;
const int pinG = 10;
const int pinB = 9;

void setup() {
  // put your setup code here, to run once:
  pinMode(pinR, OUTPUT);
  pinMode(pinG, OUTPUT);
  pinMode(pinB, OUTPUT);
}

void loop() {
  // put your main code here, to run repeatedly:
  analogWrite(pinR,255);
  analogWrite(pinG,255);
  analogWrite(pinB,0);
}