-
-
Notifications
You must be signed in to change notification settings - Fork 1k
/
Copy pathardrone_adaptor.go
68 lines (57 loc) · 1.33 KB
/
ardrone_adaptor.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
package ardrone
import (
client "github.com/hybridgroup/go-ardrone/client"
"gobot.io/x/gobot/v2"
)
// drone defines expected drone behaviour
type drone interface {
Takeoff() bool
Land()
Up(n float64)
Down(n float64)
Left(n float64)
Right(n float64)
Forward(n float64)
Backward(n float64)
Clockwise(n float64)
Counterclockwise(n float64)
Hover()
}
// Adaptor is gobot.Adaptor representation for the Ardrone
type Adaptor struct {
name string
drone drone
config client.Config
connect func(*Adaptor) (drone, error)
}
// NewAdaptor returns a new ardrone.Adaptor and optionally accepts:
//
// string: The ardrones IP Address
func NewAdaptor(v ...string) *Adaptor {
a := &Adaptor{
name: gobot.DefaultName("ARDrone"),
connect: func(a *Adaptor) (drone, error) {
return client.Connect(a.config)
},
}
a.config = client.DefaultConfig()
if len(v) > 0 {
a.config.Ip = v[0]
}
return a
}
// Name returns the Adaptor Name
func (a *Adaptor) Name() string { return a.name }
// SetName sets the Adaptor Name
func (a *Adaptor) SetName(n string) { a.name = n }
// Connect establishes a connection to the ardrone
func (a *Adaptor) Connect() error {
d, err := a.connect(a)
if err != nil {
return err
}
a.drone = d
return nil
}
// Finalize terminates the connection to the ardrone
func (a *Adaptor) Finalize() error { return nil }