What is this?
NodeCopter.js is a full day event where 15 - 60 developers team up in groups of 3.
Each team receives one Parrot AR Drone 2.0 and spends the day programming and playing with it. At the end of the day, each team gets to present their work to the other attendees.
Upcoming Events
- May 28, 2015 - JSConf, Florida by Core Team & JSConf(http://2015.jsconf.us)
Past Events
- Oct 5, 2012 - Berlin by Core Team & JSConf.eu
- Oct 20, 2012 - Dublin by Paul Campbell
- Oct 31, 2012 - San Francisco by Christian Sanz
- Nov 8-9, 2012 - Seattle, WA by Chris Williams
- Nov 10, 2012 - Brighton by Remy Sharp
- Dec 1, 2012 - San Francisco by Christian Sanz & Jyri Engeström
- Jan 23, 2013 - Zurich by Jordi Boggiano
- Mar 2, 2013 - Oslo by Trygve Lie & Gregers Gram Rygg
- Mar 16, 2013 - London by Andrew Nesbitt
- Mar 23, 2013 - Bath by Andrew Nesbitt
- Apr 20, 2013 - Helsinki by Janne Aukia and Team
- May 11, 2013 - Scotland by Andrew Nesbitt & Julian Cheal & Scotland.js
- May 30, 2013 - Amelia Island by Core Team & JSConf.us
- Jul 27, 2013 - Manchester by Andrew Nesbitt
- Aug 10, 2013 - Southampton by Andrew Nesbitt & Julian Cheal
- Aug 18, 2013 - London by Andrew Nesbitt
- Sep 7, 2013 - Cincinnati by Jim Weirich & Carin Meier
- Sep 13, 2013 - Berlin by Core Team
- Sep 21, 2013 - Bristol by Andrew Nesbitt
- Sep 28, 2013 - Berlin by Henri Bergius (NoFlo Edition!)
- Oct 4, 2013 - Lisbon by A few Portuguese guys
- Oct 13, 2013 - New York City by Core Team
- Nov 23, 2013 - Sheffield by Julian Cheal & Caolan McMahon
- Dec 6-7, 2013 - Amelia Island by Chris & Laura (RobotsConf!)
- Jan 23, 2014 - Istanbul by Kod Mutfağı
- Feb 12, 2014 - London by Andrew Nesbitt
- Mar 17, 2014 - Warsaw, Poland by Core Team & Makerland
- May 29, 2014 - JSConf, Florida by Core Team & JSConf
Join the Community
Want to hack on your drone, but no event in sight? Come and hang out in the
#nodecopter
IRC channel on freenode.net!
Also, make sure to be the first to find out about new events:
Programming a drone is easy!
Install Node.js and get the ar-drone module. All you need to do then is to execute the following code with node. That will make your drone take off, move around, do a flip and carefully land again. Seriously, that’s all!
var arDrone = require('ar-drone');
var client = arDrone.createClient();
client.takeoff();
client
.after(5000, function() {
this.clockwise(0.5);
})
.after(3000, function() {
this.animate('flipLeft', 15);
})
.after(1000, function() {
this.stop();
this.land();
});