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

22 lines
1.2 KiB
Go

package bebop
type testDrone struct{}
func (t testDrone) TakeOff() error { return nil }
func (t testDrone) Land() error { return nil }
func (t testDrone) Up(n int) error { return nil }
func (t testDrone) Down(n int) error { return nil }
func (t testDrone) Left(n int) error { return nil }
func (t testDrone) Right(n int) error { return nil }
func (t testDrone) Forward(n int) error { return nil }
func (t testDrone) Backward(n int) error { return nil }
func (t testDrone) Clockwise(n int) error { return nil }
func (t testDrone) CounterClockwise(n int) error { return nil }
func (t testDrone) Stop() error { return nil }
func (t testDrone) Connect() error { return nil }
func (t testDrone) Video() chan []byte { return nil }
func (t testDrone) StartRecording() error { return nil }
func (t testDrone) StopRecording() error { return nil }
func (t testDrone) HullProtection(protect bool) error { return nil }
func (t testDrone) Outdoor(outdoor bool) error { return nil }