hybridgroup.gobot/platforms/ardrone
deadprogram 56558cd9cb core: Starting refactor of new adaptor/new driver function signatures with ARDrone
Signed-off-by: deadprogram <ron@hybridgroup.com>
2016-09-25 11:46:55 +02:00
..
LICENSE misc: update all LICENSE files for current year 2016-08-27 13:12:47 +02:00
README.md The take-off-before-event-handling bug again 2016-02-17 12:25:14 -08:00
ardrone_adaptor.go core: Starting refactor of new adaptor/new driver function signatures with ARDrone 2016-09-25 11:46:55 +02:00
ardrone_adaptor_test.go core: Starting refactor of new adaptor/new driver function signatures with ARDrone 2016-09-25 11:46:55 +02:00
ardrone_driver.go core: Starting refactor of new adaptor/new driver function signatures with ARDrone 2016-09-25 11:46:55 +02:00
ardrone_driver_test.go core: Starting refactor of new adaptor/new driver function signatures with ARDrone 2016-09-25 11:46:55 +02:00
doc.go core: Starting refactor of new adaptor/new driver function signatures with ARDrone 2016-09-25 11:46:55 +02:00
test_helper.go Make golint happy 2014-06-10 15:16:11 -07:00

README.md

Ardrone

The ARDrone from Parrot is an inexpensive quadcopter that is controlled using WiFi. It includes a built-in front-facing HD video camera, as well as a second lower resolution bottom facing video camera.

For more info about the ARDrone platform click here.

How to Install

go get -d -u github.com/hybridgroup/gobot/... && go install github.com/hybridgroup/gobot/platforms/ardrone

How to Use

package main

import (
	"time"

	"github.com/hybridgroup/gobot"
	"github.com/hybridgroup/gobot/platforms/ardrone"
)

func main() {
	gbot := gobot.NewGobot()

	ardroneAdaptor := ardrone.NewArdroneAdaptor("Drone")
	drone := ardrone.NewArdroneDriver(ardroneAdaptor, "Drone")

	work := func() {
		gobot.On(drone.Event("flying"), func(data interface{}) {
			gobot.After(3*time.Second, func() {
				drone.Land()
			})
		})
		drone.TakeOff()
	}

	robot := gobot.NewRobot("drone",
		[]gobot.Connection{ardroneAdaptor},
		[]gobot.Device{drone},
		work,
	)
	gbot.AddRobot(robot)

	gbot.Start()
}

How to Connect

The ARDrone is a WiFi device, so there is no additional work to establish a connection to a single drone. However, in order to connect to multiple drones, you need to perform some configuration steps on each drone via SSH.