/argus

Ruby API for controlling a Parrot AR Drone

Primary LanguageRubyMIT LicenseMIT

Argus -- Parrot AR Drone Ruby API

Current Status

  • Experimental
  • Subject to change
  • Use at your own risk
  • May cause cancer

Example

require 'argus'

drone = Argus::Drone.new
drone.start

drone.take_off
sleep 5
drone.turn_right(1.0)
sleep 5
drone.turn_left(1.0)
sleep 5
drone.hover.land
sleep 5
drone.stop