Release 0.4.0
This is a big release that now adds the entire Parrot Bebop command set. This example receives GPS location updates:
drone.connect(function() {
drone.GPSSettings.resetHome();
drone.WifiSettings.outdoorSetting(1);
drone.on("PositionChanged", function(data) {
console.log(data);
});
Check out the examples directory for more.