hybridgroup.gobot/device.go

35 lines
657 B
Go
Raw Normal View History

2013-10-23 07:45:31 +08:00
package gobot
2013-10-24 13:00:03 +08:00
import (
2013-11-14 12:44:54 +08:00
"fmt"
"reflect"
2013-10-24 13:00:03 +08:00
)
2013-10-23 07:45:31 +08:00
type Device struct {
2013-11-14 12:44:54 +08:00
Name string
Interval string
Robot *Robot
Driver interface{}
Params map[string]string
2013-10-23 07:45:31 +08:00
}
2013-10-29 09:50:09 +08:00
func NewDevice(driver interface{}, r *Robot) *Device {
2013-11-14 12:44:54 +08:00
d := new(Device)
d.Name = reflect.ValueOf(driver).Elem().FieldByName("Name").String()
d.Robot = r
d.Driver = driver
return d
2013-10-23 07:45:31 +08:00
}
2013-10-29 09:50:09 +08:00
func (d *Device) Start() {
2013-11-14 12:44:54 +08:00
fmt.Println("Device " + d.Name + " started")
r := reflect.ValueOf(d.Driver).MethodByName("StartDriver")
if r.IsValid() {
r.Call([]reflect.Value{})
}
2013-10-23 07:45:31 +08:00
}
2013-10-29 09:50:09 +08:00
func (d *Device) Command(method_name string, arguments []string) {
2013-11-14 12:44:54 +08:00
//dt.Driver.Command(method_name, arguments)
2013-10-23 07:45:31 +08:00
}