hybridgroup.gobot/examples/firmata_travis.go

115 lines
2.7 KiB
Go
Raw Normal View History

//go:build example
// +build example
//
// Do not build by default.
/*
How to run
Pass serial port to use as the first param:
go run examples/firmata_travis.go /dev/ttyACM0
*/
package main
import (
"encoding/json"
"fmt"
"io"
"net/http"
"os"
2014-05-23 10:22:14 +08:00
"time"
2014-07-10 07:51:00 +08:00
"gobot.io/x/gobot/v2"
"gobot.io/x/gobot/v2/drivers/gpio"
"gobot.io/x/gobot/v2/platforms/firmata"
)
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"`
}
2014-06-14 02:19:01 +08:00
func turnOn(robot *gobot.Robot, device string) {
if err := robot.Device(device).(*gpio.LedDriver).On(); err != nil {
fmt.Println(err)
}
2014-06-14 02:19:01 +08:00
}
2014-07-09 09:36:14 +08:00
func resetLeds(robot *gobot.Robot) {
if err := robot.Device("red").(*gpio.LedDriver).Off(); err != nil {
fmt.Println(err)
}
if err := robot.Device("green").(*gpio.LedDriver).Off(); err != nil {
fmt.Println(err)
}
if err := robot.Device("blue").(*gpio.LedDriver).Off(); err != nil {
fmt.Println(err)
}
}
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-14 02:19:01 +08:00
turnOn(robot, "blue")
resp, err := http.Get(fmt.Sprintf("https://api.travis-ci.org/repos/%s/%s.json", user, name))
if err != nil {
panic(err)
}
defer resp.Body.Close()
body, err := io.ReadAll(resp.Body)
if err != nil {
panic(err)
}
var travis TravisResponse
if err := json.Unmarshal(body, &travis); err != nil {
fmt.Println(err)
}
resetLeds(robot)
if travis.LastBuildStatus == 0 {
2014-06-14 02:19:01 +08:00
turnOn(robot, "green")
} else {
2014-06-14 02:19:01 +08:00
turnOn(robot, "red")
}
}
func main() {
manager := gobot.NewManager()
firmataAdaptor := firmata.NewAdaptor(os.Args[1])
red := gpio.NewLedDriver(firmataAdaptor, "7", gpio.WithName("red"))
green := gpio.NewLedDriver(firmataAdaptor, "6", gpio.WithName("green"))
blue := gpio.NewLedDriver(firmataAdaptor, "5", gpio.WithName("blue"))
work := func() {
checkTravis(manager.Robot("travis"))
2014-05-23 10:22:14 +08:00
gobot.Every(10*time.Second, func() {
checkTravis(manager.Robot("travis"))
})
}
2014-07-09 09:36:14 +08:00
robot := gobot.NewRobot("travis",
[]gobot.Connection{firmataAdaptor},
[]gobot.Device{red, green, blue},
work,
2014-06-14 02:19:01 +08:00
)
manager.AddRobot(robot)
if err := manager.Start(); err != nil {
panic(err)
}
}