1
0
mirror of https://github.com/hybridgroup/gobot.git synced 2025-05-06 19:29:15 +08:00
hybridgroup.gobot/driver.go

13 lines
155 B
Go
Raw Normal View History

2014-04-30 08:10:44 -07:00
package gobot
2013-10-23 22:00:03 -07:00
type Driver interface {
Start() []error
Halt() []error
Name() string
Connection() Connection
2014-06-06 14:44:16 -07:00
}
2014-11-21 19:35:01 -08:00
2014-11-28 19:04:22 -08:00
type Pinner interface {
2014-11-21 19:35:01 -08:00
Pin() string
}