Skip to content

Instantly share code, notes, and snippets.

@skynettw
Created December 24, 2017 08:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save skynettw/96350162160360e8656761a21164019d to your computer and use it in GitHub Desktop.
Save skynettw/96350162160360e8656761a21164019d to your computer and use it in GitHub Desktop.
#include "Servo.h"
Servo m;
void setup() {
m.attach(9);
}
void loop() {
m.write(90);
delay(500);
m.write(20);
delay(500);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment