/* Calibration Demonstrates one techinque for calibrating sensor input. The sensor readings during the first five seconds of the sketch execution define the minimum and maximum of expected values attached to the sensor pin. The sensor minumum and maximum initial values may seem backwards. Initially, you set the minimum high and listen for anything lower, saving it as the new minumum. Likewise, you set the maximum low and listen for anything higher as the new maximum. The circuit: * Analog sensor (potentiometer will do) attached to analog input 0 * LED attached from digital pin 9 to ground created 29 Oct 2008 By David A Mellis Modified 17 Jun 2009 By Tom Igoe http://arduino.cc/en/Tutorial/Calibration This example code is in the public domain. */ // These constants won't change: const int sensorPin = 0; // pin that the sensor is attached to const int ledPin = 9; // pin that the LED is attached to // variables: int analogValue = 0; // the sensor value int sensorMin = 1023; // minimum sensor value int sensorMax = 0; // maximum sensor value void setup() { // copied from AnalogInSerial Serial.begin(9600); // end copy // turn on LED to signal the start of the calibration period: pinMode(13, OUTPUT); digitalWrite(13, HIGH); // calibrate during the first five seconds while (millis() < 5000) { analogValue = analogRead(0); // record the maximum sensor value if (analogValue > sensorMax) { sensorMax = analogValue; } // record the minimum sensor value if (analogValue < sensorMin) { sensorMin = analogValue; } } // signal the end of the calibration period digitalWrite(13, LOW); } void loop() { // read the sensor: analogValue = analogRead(sensorPin); // apply the calibration to the sensor reading analogValue = map(analogValue, sensorMin, sensorMax, 0, 255); // in case the sensor value is outside the range seen during calibration analogValue = constrain(analogValue, 0, 255); // fade the LED using the calibrated value: analogWrite(ledPin, analogValue); // code copied from AnalogInSerial Sketch // read the analog input into a variable: //int analogValue = analogRead(0); // print the result: //debug (uncomment the line below inc. delay //if you want to read back to serial monitor) Serial.println(analogValue); // wait 10 milliseconds for the analog-to-digital converter // to settle after the last reading: delay(10); }