1
0
mirror of https://github.com/hybridgroup/gobot.git synced 2025-04-26 13:48:49 +08:00

Remove Params from driver struct

This commit is contained in:
Adrian Zankich 2013-12-30 13:36:22 -08:00
parent 7bfd8497c7
commit 2e5c745432
2 changed files with 0 additions and 2 deletions

View File

@ -9,7 +9,6 @@ type device struct {
Interval string `json:"-"`
Robot *Robot `json:"-"`
Driver DriverInterface
Params map[string]string `json:"-"`
}
type Device interface {

View File

@ -4,7 +4,6 @@ type Driver struct {
Interval string
Pin string
Name string
Params map[string]string
Commands []string
Events map[string]chan interface{} `json:"-"`
}