const int B = A5;
const int G = A4;
const int R = A3;
float Bs = 0;
float Gs = 0;
float Rs = 0;
void setup() {
// put your setup code here, to run once:
pinMode(B, OUTPUT);
pinMode(G, OUTPUT);
pinMode(R, OUTPUT);
}
void loop() {
// put your main code here, to run repeatedly:
analogWrite(B, 255);
/*
analogWrite(B, 75);
analogWrite(G, 75);
analogWrite(R, 75);
*/
}