Exploration of planets that orbits stars out the solar system by using Arduino With LDR sensor.
We can discover new planets by looking at whether there is a planet orbiting another star is to wait for a decline in the brightness of the star when the planet crosses in front of it.
Determining the outer planets provides us with a fantastic opportunity to study the physical properties of this planet By comparing them with the planets of the solar system.
LDR Sensor by Arduino
One leg of the LDR is connected to VCC (5V) on the Arduino, and the other to the analog pin 0 on the Arduino. A 100K resistor is also connected to the same leg and grounded.
Note: But it will work better if released out side earth atmosphere.
the Code for the Arduino LDR Sensor
int sensorPin = A0; // select the input pin for the potentiometer
int ledPin = 13; // select the pin for the LED
int sensorValue = 0; // variable to store the value coming from the
void setup() {
pinMode(ledPin, OUTPUT);
Serial.begin(9600);
}
void loop() {
sensorValue = analogRead(sensorPin);
digitalWrite(ledPin, HIGH);
delay(sensorValue);
digitalWrite(ledPin, LOW);
delay(sensorValue);
Serial.println(sensorValue, DEC); }