hybridgroup.gobot/examples/firmata_travis.go

80 lines
2.3 KiB
Go
Raw Normal View History

package main
import (
"encoding/json"
"fmt"
"github.com/hybridgroup/gobot"
2014-05-23 10:22:14 +08:00
"github.com/hybridgroup/gobot/platforms/firmata"
"github.com/hybridgroup/gobot/platforms/gpio"
"io/ioutil"
"net/http"
2014-05-23 10:22:14 +08:00
"time"
)
type TravisResponse struct {
ID int `json:"id"`
Slug string `json:"slug"`
Description string `json:"description"`
PublicKey string `json:"public_key"`
LastBuildID int `json:"last_build_id"`
LastBuildNumber string `json:"last_build_number"`
LastBuildStatus int `json:"last_build_status"`
LastBuildResult int `json:"last_build_result"`
LastBuildDuration int `json:"last_build_duration"`
LastBuildLanguage string `json:"last_build_language"`
LastBuildStartedAt string `json:"last_build_started_at"`
LastBuildFinishedAt string `json:"last_build_finished_at"`
}
func resetLeds(robot *gobot.Robot) {
2014-06-11 06:16:11 +08:00
gobot.Call(robot.Device("red").Driver, "Off")
gobot.Call(robot.Device("green").Driver, "Off")
gobot.Call(robot.Device("blue").Driver, "Off")
}
func checkTravis(robot *gobot.Robot) {
resetLeds(robot)
user := "hybridgroup"
name := "gobot"
//name := "broken-arrow"
fmt.Printf("Checking repo %s/%s\n", user, name)
2014-06-11 06:16:11 +08:00
gobot.Call(robot.Device("blue").Driver, "On")
resp, err := http.Get(fmt.Sprintf("https://api.travis-ci.org/repos/%s/%s.json", user, name))
defer resp.Body.Close()
if err != nil {
panic(err)
}
body, err := ioutil.ReadAll(resp.Body)
if err != nil {
panic(err)
}
var travis TravisResponse
json.Unmarshal(body, &travis)
resetLeds(robot)
if travis.LastBuildStatus == 0 {
2014-06-11 06:16:11 +08:00
gobot.Call(robot.Device("green").Driver, "On")
} else {
2014-06-11 06:16:11 +08:00
gobot.Call(robot.Device("red").Driver, "On")
}
}
func main() {
2014-05-23 10:22:14 +08:00
master := gobot.NewGobot()
firmataAdaptor := firmata.NewFirmataAdaptor("firmata", "/dev/ttyACM0")
2014-06-11 06:16:11 +08:00
red := gpio.NewLedDriver(firmataAdaptor, "red", "7")
green := gpio.NewLedDriver(firmataAdaptor, "green", "6")
blue := gpio.NewLedDriver(firmataAdaptor, "blue", "5")
work := func() {
2014-06-11 06:16:11 +08:00
checkTravis(master.Robot("travis"))
2014-05-23 10:22:14 +08:00
gobot.Every(10*time.Second, func() {
2014-06-11 06:16:11 +08:00
checkTravis(master.Robot("travis"))
})
}
2014-05-23 10:22:14 +08:00
master.Robots = append(master.Robots,
gobot.NewRobot("travis", []gobot.Connection{firmataAdaptor}, []gobot.Device{red, green, blue}, work))
master.Start()
}