Skip to content

Instantly share code, notes, and snippets.

@rockos
Last active August 29, 2015 14:18
Show Gist options
  • Save rockos/6c121b53d8d4b2f7da5e to your computer and use it in GitHub Desktop.
Save rockos/6c121b53d8d4b2f7da5e to your computer and use it in GitHub Desktop.
#include <Servo.h>
Servo myservo;
void setup()
{
myservo.attach(8);
}
void loop()
{
myservo.write(0);
delay(500);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment