ArduinoLightSensor

This program has been tested on the Arduino UNO R3 and can used to test the light sensor on a LCD Plus Shield.

Arduino Code

int analogPin = A1;  
void setup()
{
  Serial.begin(9600);         
}

int val;
void loop()
{
  val = analogRead(analogPin);    
  Serial.println(val);         
  delay(1000);
}