1
0
mirror of https://github.com/hybridgroup/gobot.git synced 2025-05-13 19:29:10 +08:00
deadprogram 95586fa2d0 parrot: move both ARDrone and Bebop under Parrot package
Signed-off-by: deadprogram <ron@hybridgroup.com>
2016-12-07 14:22:12 +01:00

16 lines
605 B
Go

package ardrone
type testDrone struct{}
func (t testDrone) Takeoff() bool { return true }
func (t testDrone) Land() {}
func (t testDrone) Up(a float64) {}
func (t testDrone) Down(a float64) {}
func (t testDrone) Left(a float64) {}
func (t testDrone) Right(a float64) {}
func (t testDrone) Forward(a float64) {}
func (t testDrone) Backward(a float64) {}
func (t testDrone) Clockwise(a float64) {}
func (t testDrone) Counterclockwise(a float64) {}
func (t testDrone) Hover() {}