This sketch tests and demonstrates the operation of the potentiometer, rotating the poteniometer should give a number on the serial monitor that increases and decreases between 0 and 1023.
/* Diyode CodeShield Base Script */
#define ENCODER_A 14
#define ENCODER_B 15
#define ENCODER_PORT PINC
#define SWITCH 13
#define BUTTON 12
#define RGB_RED 11
#define RGB_GREEN 10
#define RGB_BLUE 9
#define LED 6
#define SERVO 5
#define PIEZO 3
#define RELAY 2
#define POT 2
#define HALL 3
#define THERMISTOR 4
#define PHOTOCELL 5
void setup() {
Serial.begin(9600);
}
void loop() {
int value= analogRead(POT);
Serial.print(" The Potentiometer value is ");
Serial.println (value);
delay (10);
}