#include <Servo.h>
Servo lightservo;
void setup() {
lightservo.attach(9);
}
void loop() {
int lightValue = analogRead(A0);
lightValue = map (lightValue, 0, 1023, 0, 180);
lightservo.write (lightValue);
}
#include <Servo.h>
Servo lightservo;
void setup() {
lightservo.attach(9);
}
void loop() {
int lightValue = analogRead(A0);
lightValue = map (lightValue, 0, 1023, 0, 180);
lightservo.write (lightValue);
}