Created
March 20, 2013 20:27
-
-
Save bjartwolf/5208139 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var arDrone = require('ar-drone'); | |
var drone = arDrone.createClient(); | |
drone.takeoff(); | |
drone | |
.after(5000, function() { | |
this.clockwise(0.5); | |
}) | |
.after(1000, function() { | |
this.stop(); | |
this.land(); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment