1
0
mirror of https://github.com/hybridgroup/gobot.git synced 2025-05-02 22:17:12 +08:00
hybridgroup.gobot/platforms/neurosky/neurosky_adaptor.go

49 lines
1.1 KiB
Go
Raw Normal View History

2014-04-27 17:17:05 -07:00
package neurosky
import (
2014-07-22 18:00:54 -07:00
"io"
"github.com/hybridgroup/gobot"
"github.com/tarm/goserial"
)
var _ gobot.Adaptor = (*NeuroskyAdaptor)(nil)
type NeuroskyAdaptor struct {
name string
port string
2014-04-27 17:17:05 -07:00
sp io.ReadWriteCloser
2014-12-18 14:42:59 -08:00
connect func(*NeuroskyAdaptor) (io.ReadWriteCloser, error)
}
// NewNeuroskyAdaptor creates a neurosky adaptor with specified name
2014-05-22 20:43:00 -07:00
func NewNeuroskyAdaptor(name string, port string) *NeuroskyAdaptor {
2014-04-27 17:17:05 -07:00
return &NeuroskyAdaptor{
name: name,
port: port,
2014-12-18 14:42:59 -08:00
connect: func(n *NeuroskyAdaptor) (io.ReadWriteCloser, error) {
return serial.OpenPort(&serial.Config{Name: n.Port(), Baud: 57600})
2014-04-27 17:17:05 -07:00
},
}
}
func (n *NeuroskyAdaptor) Name() string { return n.name }
func (n *NeuroskyAdaptor) Port() string { return n.port }
// Connect returns true if connection to device is successful
func (n *NeuroskyAdaptor) Connect() (errs []error) {
2014-12-18 14:42:59 -08:00
if sp, err := n.connect(n); err != nil {
return []error{err}
2014-12-18 14:42:59 -08:00
} else {
n.sp = sp
}
return
}
// Finalize returns true if device finalization is successful
func (n *NeuroskyAdaptor) Finalize() (errs []error) {
if err := n.sp.Close(); err != nil {
return []error{err}
}
return
}