Dude.. try it. Yours will report those numbers too.
Sketch this:
int analogPin1 = A0;
bool runOnce = true;
void setup() {
Serial.begin (115200);
}
void loop() {
if (runOnce == true) {
Serial.print ("This is controlled with the Potentiometer at Pin ");
Serial.println (analogPin1);
runOnce = false;
}
}
I mean REALLY? I thought I was careful in Post Number ONE to clearly and concisely explain this very real problem that I am also kind of surprised nobody else has said anything about.