int potPinA = 0; int potValueA = 0; int ledA = 9; int potPinB = 1; int potValueB = 0; int ledB = 11; void setup() { Serial.begin(9600); } void loop() { potValueA = analogRead(potPinA); potValueB = analogRead(potPinB); analogWrite(ledA, potValueA/4); analogWrite(ledB, potValueB*4); // Serial.println(potValueA); Serial.println(potValueB); delay(10); }