Skip to content

Instantly share code, notes, and snippets.

@futureshocked
Created January 6, 2020 05:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save futureshocked/a9371ee8a86260932e8d77201a464669 to your computer and use it in GitHub Desktop.
Save futureshocked/a9371ee8a86260932e8d77201a464669 to your computer and use it in GitHub Desktop.
This sketch reads the light intensity values from a photo-resistor connected to pin A0 of an Arduino.
// the setup function runs once when you press reset:
void setup() {
// initialize serial communication at 9600 bits per second:
Serial.begin(9600);
}
// the loop routine runs over and over again forever:
void loop() {
// read the input on analog pin 0:
int sensorValue = analogRead(A0);
// print out the value you read:
Serial.println(sensorValue);
delay(10);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment