Skip to content

Instantly share code, notes, and snippets.

@davelester
Created January 19, 2013 06:38
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 davelester/4571089 to your computer and use it in GitHub Desktop.
Save davelester/4571089 to your computer and use it in GitHub Desktop.
var arDrone = require('ar-drone');
var client = arDrone.createClient();
client.takeoff();
client.after(2000, function() {
this.up(0.4);
client.after(3000, function() {
this.animate('wave',3000);
console.log('flip', client);
});
client.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