tyrande / spbot

This is a spray paint robot
0 stars 0 forks source link

Servo code #6

Open crane-may opened 10 years ago

crane-may commented 10 years ago
#include <Servo.h>

Servo myservo;
int potpin = 0;
int val;
void setup()
{
  myservo.attach(9);
  myservo.write(110);
  delay(1000);
  myservo.write(150);
}
void loop()
{
}