#define LEDR 25
#define LEDG 14
#define LEDB 12
#define POT1 4
#define POT2 2
#define POT3 15
void setup() {
}
void loop() {
analogWrite(LEDR, map(analogRead(POT1), 0, 4095, 0, 255));
analogWrite(LEDG, map(analogRead(POT2), 0, 4095, 0, 255));
analogWrite(LEDB, map(analogRead(POT3), 0, 4095, 0, 255));
delay(10);
}