1
0
mirror of https://github.com/hybridgroup/gobot.git synced 2025-05-04 22:17:39 +08:00
hybridgroup.gobot/driver.go
2014-11-28 19:04:22 -08:00

13 lines
155 B
Go

package gobot
type Driver interface {
Start() []error
Halt() []error
Name() string
Connection() Connection
}
type Pinner interface {
Pin() string
}