1
0
mirror of https://github.com/hybridgroup/gobot.git synced 2025-04-27 13:48:56 +08:00
hybridgroup.gobot/driver.go

14 lines
207 B
Go
Raw Normal View History

2013-10-22 16:45:31 -07:00
package gobot
2013-10-23 22:00:03 -07:00
type Driver struct {
2013-11-13 20:44:54 -08:00
Interval string
Pin string
Name string
2013-11-24 14:41:36 -08:00
Commands []string
2013-11-23 10:36:08 -08:00
Events map[string]chan interface{} `json:"-"`
2013-10-23 22:00:03 -07:00
}
type DriverInterface interface {
Start() bool
2013-10-23 22:00:03 -07:00
}