mirror of
https://github.com/hybridgroup/gobot.git
synced 2025-05-02 22:17:12 +08:00
14 lines
207 B
Go
14 lines
207 B
Go
package gobot
|
|
|
|
type Driver struct {
|
|
Interval string
|
|
Pin string
|
|
Name string
|
|
Commands []string
|
|
Events map[string]chan interface{} `json:"-"`
|
|
}
|
|
|
|
type DriverInterface interface {
|
|
Start() bool
|
|
}
|