#include <Servo.h>

Servo servo;

int val = 0;
int potenpin = 0;

void setup() {
  servo.attach(9);
}

void loop() {
 val = analogRead(potenpin);
 val = map (val, 0, 1023, 0, 180);
 servo.write(val);
 delay(15); 
}