void setup(){ Serial.begin(9600); //start serial at 9600 bits per second } void loop(){ int in = analogRead(5); //read information from the photocell ) Serial.println(in); // send information through serial stream }