hybridgroup.gobot/driver.go

11 lines
145 B
Go
Raw Normal View History

2014-04-30 23:10:44 +08:00
package gobot
2013-10-24 13:00:03 +08:00
type Driver interface {
Start() []error
Halt() []error
Name() string
Pin() string
String() string
Connection() Connection
2014-06-07 05:44:16 +08:00
}