hybridgroup.gobot/platforms/sphero/sphero_adaptor.go

66 lines
1.5 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.AdaptorInterface = (*SpheroAdaptor)(nil)
2014-09-29 11:32:31 +08:00
// Represents a Connection to a Sphero
type SpheroAdaptor struct {
gobot.Adaptor
2014-04-27 09:07:04 +08:00
sp io.ReadWriteCloser
connect func(*SpheroAdaptor)
}
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{
2014-07-08 08:42:19 +08:00
Adaptor: *gobot.NewAdaptor(
name,
"SpheroAdaptor",
port,
),
2014-04-27 09:07:04 +08:00
connect: func(a *SpheroAdaptor) {
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 {
panic(err)
}
a.sp = s
},
}
}
2014-09-29 11:32:31 +08:00
// Connect initiates a connection to the Sphero. Returns true on successful connection.
func (a *SpheroAdaptor) Connect() error {
2014-04-27 09:07:04 +08:00
a.connect(a)
2014-07-08 08:42:19 +08:00
a.SetConnected(true)
return nil
}
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() error {
2014-07-08 08:42:19 +08:00
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() error {
2014-04-27 09:07:04 +08:00
a.sp.Close()
2014-07-08 08:42:19 +08:00
a.SetConnected(false)
return nil
}
2014-09-29 11:32:31 +08:00
// Finalize finalizes the SpheroAdaptor
func (a *SpheroAdaptor) Finalize() error {
return nil
}