Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Nodecopter - Handheld mini

Nodecopter - Handheld mini

Presented at Handheld mini/Port80 Localhost

Andrew Nesbitt

November 27, 2013
Tweet

More Decks by Andrew Nesbitt

Other Decks in Technology

Transcript

  1. Node.js is a platform built on Chrome's JavaScript runtime for

    easily building fast, scalable network applications. Node.js uses an event-driven, non- blocking I/O model that makes it lightweight and efficient, perfect for data-intensive real-time applications that run across distributed devices.
  2. var arDrone = require('ar-drone');
 var client = arDrone.createClient();
 
 client.takeoff();


    
 client
 .after(3000, function() {
 this.up(1);
 })
 .after(2000, function() {
 this.stop()
 this.clockwise(1);
 })
 .after(3000, function() {
 this.stop();
 this.land();
 });