mirror of
https://github.com/hybridgroup/gobot.git
synced 2025-05-04 22:17:39 +08:00
13 lines
155 B
Go
13 lines
155 B
Go
package gobot
|
|
|
|
type Driver interface {
|
|
Start() []error
|
|
Halt() []error
|
|
Name() string
|
|
Connection() Connection
|
|
}
|
|
|
|
type Pinner interface {
|
|
Pin() string
|
|
}
|