#define POT1_PIN 0
#define POT2_PIN 1
void setup() {
Serial.begin(115200);
adcAttachPin(0);
adcAttachPin(1);
}
void loop() {
int pot1Value = analogRead(0);
int pot2Value = analogRead(1);
Serial.print("Potentiometer 1: ");
Serial.println(pot1Value);
Serial.print("Potentiometer 2: ");
Serial.println(pot2Value);
delay(1000);
}