control the parrot AR drone using the LOGO programming language
npm install logo-dronecontrol the parrot AR drone (aka the nodecopter) using the LOGO programming language
uses the excellent js streaming LOGO interpreter written by @thisandagain
``javascript
var logodrone = require('logo-drone')(droneClientOptions)
var logoScript = 'RT 90 FD 200 RT 200'
logodrone.convert(logoScript, function(err, instructions) {
logodrone.sendInstructions(instructions)
})
// or more simply:
logodrone.convertAndSend(logoScript)
``
http://www.youtube.com/watch?v=weV9ePxKo68
http://www.youtube.com/watch?v=M3s9Iwx2NsQ
BSD