2014-04-28 11:23:12 -07:00
|
|
|
package ardrone
|
2014-04-26 03:11:51 -07:00
|
|
|
|
|
|
|
type testDrone struct{}
|
|
|
|
|
2014-06-10 15:16:11 -07:00
|
|
|
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() {}
|