2023-05-20 20:25:21 +08:00
|
|
|
//go:build example
|
2017-03-13 23:01:39 +08:00
|
|
|
// +build example
|
2023-05-20 20:25:21 +08:00
|
|
|
|
2017-03-13 23:01:39 +08:00
|
|
|
//
|
|
|
|
// Do not build by default.
|
|
|
|
|
2015-10-23 07:56:03 +08:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2024-02-11 22:34:50 +08:00
|
|
|
"fmt"
|
2015-10-23 07:56:03 +08:00
|
|
|
"time"
|
|
|
|
|
2023-05-20 20:25:21 +08:00
|
|
|
"gobot.io/x/gobot/v2"
|
|
|
|
"gobot.io/x/gobot/v2/platforms/parrot/bebop"
|
2015-10-23 07:56:03 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
func main() {
|
2016-10-03 22:58:43 +08:00
|
|
|
bebopAdaptor := bebop.NewAdaptor()
|
|
|
|
drone := bebop.NewDriver(bebopAdaptor)
|
2015-10-23 07:56:03 +08:00
|
|
|
|
|
|
|
work := func() {
|
2024-02-11 22:34:50 +08:00
|
|
|
_ = drone.On(bebop.Flying, func(data interface{}) {
|
2016-04-13 05:32:53 +08:00
|
|
|
gobot.After(10*time.Second, func() {
|
2024-02-11 22:34:50 +08:00
|
|
|
if err := drone.Land(); err != nil {
|
|
|
|
fmt.Println(err)
|
|
|
|
}
|
2015-10-23 07:56:03 +08:00
|
|
|
})
|
|
|
|
})
|
2015-10-25 06:50:44 +08:00
|
|
|
|
2024-02-11 22:34:50 +08:00
|
|
|
if err := drone.HullProtection(true); err != nil {
|
|
|
|
fmt.Println(err)
|
|
|
|
}
|
2015-10-25 06:50:44 +08:00
|
|
|
drone.TakeOff()
|
2015-10-23 07:56:03 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
robot := gobot.NewRobot("drone",
|
|
|
|
[]gobot.Connection{bebopAdaptor},
|
|
|
|
[]gobot.Device{drone},
|
|
|
|
work,
|
|
|
|
)
|
|
|
|
|
2024-02-11 22:34:50 +08:00
|
|
|
if err := robot.Start(); err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
2015-10-23 07:56:03 +08:00
|
|
|
}
|