hybridgroup.gobot/platforms/sphero/sphero_adaptor.go

72 lines
1.7 KiB
Go
Raw Normal View History

2014-04-27 09:07:04 +08:00
package sphero
import (
2014-09-29 11:32:31 +08:00
"io"
"github.com/hybridgroup/gobot"
"github.com/tarm/goserial"
)
var _ gobot.Adaptor = (*SpheroAdaptor)(nil)
2014-09-29 11:32:31 +08:00
// Represents a Connection to a Sphero
type SpheroAdaptor struct {
name string
port string
sp io.ReadWriteCloser
connected bool
connect func(*SpheroAdaptor) (err error)
}
2014-09-29 11:32:31 +08:00
// NewSpheroAdaptor returns a new SpheroAdaptor given a name and port
2014-05-23 12:20:16 +08:00
func NewSpheroAdaptor(name string, port string) *SpheroAdaptor {
2014-04-27 09:07:04 +08:00
return &SpheroAdaptor{
name: name,
port: port,
2014-11-20 08:17:14 +08:00
connect: func(a *SpheroAdaptor) (err error) {
2014-07-08 08:42:19 +08:00
c := &serial.Config{Name: a.Port(), Baud: 115200}
2014-04-27 09:07:04 +08:00
s, err := serial.OpenPort(c)
if err != nil {
2014-11-20 08:17:14 +08:00
return err
2014-04-27 09:07:04 +08:00
}
a.sp = s
2014-11-20 08:17:14 +08:00
return
2014-04-27 09:07:04 +08:00
},
}
}
func (a *SpheroAdaptor) Name() string { return a.name }
func (a *SpheroAdaptor) Port() string { return a.port }
2014-09-29 11:32:31 +08:00
// Connect initiates a connection to the Sphero. Returns true on successful connection.
func (a *SpheroAdaptor) Connect() (errs []error) {
if err := a.connect(a); err != nil {
return []error{err}
2014-11-20 08:17:14 +08:00
}
2014-12-18 06:32:12 +08:00
a.connected = true
2014-11-20 08:17:14 +08:00
return
}
2014-09-29 11:32:31 +08:00
// Reconnect attempts to reconnect to the Sphero. If the Sphero has an active connection
// it will first close that connection and then establish a new connection.
// Returns true on Successful reconnection
func (a *SpheroAdaptor) Reconnect() (errs []error) {
if a.connected == true {
2014-04-27 09:07:04 +08:00
a.Disconnect()
}
2014-04-27 09:07:04 +08:00
return a.Connect()
}
2014-09-29 11:32:31 +08:00
// Disconnect terminates the connection to the Sphero. Returns true on successful disconnect.
func (a *SpheroAdaptor) Disconnect() (errs []error) {
if err := a.sp.Close(); err != nil {
return []error{err}
2014-11-20 08:17:14 +08:00
}
a.connected = false
return
}
2014-09-29 11:32:31 +08:00
// Finalize finalizes the SpheroAdaptor
func (a *SpheroAdaptor) Finalize() (errs []error) {
return a.Disconnect()
}