Created
July 15, 2016 00:35
-
-
Save lukas/d1a47dd22de8cccedf81b42ffc9c5de5 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
ar arDrone = require('ar-drone'); | |
var client = arDrone.createClient(); | |
client.takeoff(); | |
client.after(5000, function() { | |
this.clockwise(0.5); | |
}).after(3000, function() { | |
this.stop(); | |
this.land(); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment