#include <Servo.h>
Servo servo_9 ;
void setup() {
pinMode(A0, INPUT);
servo_9.attach(9);
}
void loop() {
int sensor_o = analogRead(A0) ;
int output = map(sensor_o,0,1023,0,180) ;
servo_9.write(output) ;
delay(10);
}
#include <Servo.h>
Servo servo_9 ;
void setup() {
pinMode(A0, INPUT);
servo_9.attach(9);
}
void loop() {
int sensor_o = analogRead(A0) ;
int output = map(sensor_o,0,1023,0,180) ;
servo_9.write(output) ;
delay(10);
}