2014-04-30 23:10:44 +08:00
|
|
|
package gobot
|
2014-04-30 04:20:32 +08:00
|
|
|
|
|
|
|
import (
|
|
|
|
"errors"
|
|
|
|
"log"
|
|
|
|
)
|
|
|
|
|
2014-06-11 06:16:11 +08:00
|
|
|
type JSONDevice struct {
|
2014-07-25 07:39:27 +08:00
|
|
|
Name string `json:"name"`
|
|
|
|
Driver string `json:"driver"`
|
|
|
|
Connection string `json:"connection"`
|
|
|
|
Commands []string `json:"commands"`
|
2014-05-16 02:50:45 +08:00
|
|
|
}
|
|
|
|
|
2014-07-03 08:12:13 +08:00
|
|
|
type Device DriverInterface
|
|
|
|
|
2014-07-10 00:38:43 +08:00
|
|
|
type devices []Device
|
2014-06-24 11:33:59 +08:00
|
|
|
|
|
|
|
func (d *devices) Len() int {
|
2014-07-10 00:38:43 +08:00
|
|
|
return len(*d)
|
2014-04-30 04:20:32 +08:00
|
|
|
}
|
|
|
|
|
2014-07-03 08:12:13 +08:00
|
|
|
func (d *devices) Each(f func(Device)) {
|
2014-07-10 00:38:43 +08:00
|
|
|
for _, device := range *d {
|
2014-06-24 11:33:59 +08:00
|
|
|
f(device)
|
|
|
|
}
|
|
|
|
}
|
2014-04-30 04:20:32 +08:00
|
|
|
|
|
|
|
// Start() starts all the devices.
|
2014-07-10 00:38:43 +08:00
|
|
|
func (d *devices) Start() error {
|
2014-04-30 04:20:32 +08:00
|
|
|
var err error
|
|
|
|
log.Println("Starting devices...")
|
2014-07-10 00:38:43 +08:00
|
|
|
for _, device := range *d {
|
|
|
|
info := "Starting device " + device.Name()
|
|
|
|
if device.Pin() != "" {
|
|
|
|
info = info + " on pin " + device.Pin()
|
|
|
|
}
|
|
|
|
log.Println(info + "...")
|
2014-04-30 04:20:32 +08:00
|
|
|
if device.Start() == false {
|
2014-04-30 23:10:44 +08:00
|
|
|
err = errors.New("Could not start device")
|
2014-04-30 04:20:32 +08:00
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Halt() stop all the devices.
|
2014-07-10 00:38:43 +08:00
|
|
|
func (d *devices) Halt() {
|
|
|
|
for _, device := range *d {
|
2014-04-30 04:20:32 +08:00
|
|
|
device.Halt()
|
|
|
|
}
|
|
|
|
}
|