const int AnalogSensor = A0;
void setup() {
// put your setup code here, to run once:
Serial.begin(9600); // open serial port
}
void loop() {
// put your main code here, to run repeatedly:
int sensorVal1 = analogRead(AnalogSensor);
Serial.print("Analog sensor value; ");
Serial.println(sensorVal1);
}