1
0
mirror of https://github.com/hybridgroup/gobot.git synced 2025-04-27 13:48:56 +08:00
hybridgroup.gobot/driver.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
}