int analogInputPin = 0;
int value = analogRead(analogInputPin);

Serial.print("LDR brightness = ");
Serial.println(value);


