mirror of
https://github.com/hybridgroup/gobot.git
synced 2025-04-27 13:48:56 +08:00
15 lines
235 B
Go
15 lines
235 B
Go
package gobot
|
|
|
|
type Driver struct {
|
|
Interval string
|
|
Pin string
|
|
Name string
|
|
Params map[string]string
|
|
Commands []string
|
|
Events map[string]chan interface{} `json:"-"`
|
|
}
|
|
|
|
type DriverInterface interface {
|
|
Start() bool
|
|
}
|