/* Package ardrone provides the Gobot adaptor and driver for the Parrot Ardrone. Installing: go get -d -u gobot.io/x/gobot/... && go install gobot.io/x/gobot/platforms/parrot/ardrone Example: package main import ( "time" "gobot.io/x/gobot" "gobot.io/x/gobot/platforms/parrot/ardrone" ) func main() { ardroneAdaptor := ardrone.NewAdaptor() drone := ardrone.NewDriver(ardroneAdaptor) work := func() { drone.TakeOff() drone.On(drone.Event("flying"), func(data interface{}) { gobot.After(3*time.Second, func() { drone.Land() }) }) } robot := gobot.NewRobot("drone", []gobot.Connection{ardroneAdaptor}, []gobot.Device{drone}, work, ) robot.Start() } For more information refer to the ardrone README: https://github.com/hybridgroup/gobot/tree/master/platforms/parrot/ardrone/README.md */ package ardrone // import "gobot.io/x/gobot/platforms/parrot/ardrone"