35 lines
597 B
Go
35 lines
597 B
Go
|
package main
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
|
||
|
"github.com/hybridgroup/gobot"
|
||
|
"github.com/hybridgroup/gobot/platforms/spark"
|
||
|
)
|
||
|
|
||
|
func main() {
|
||
|
gbot := gobot.NewGobot()
|
||
|
|
||
|
sparkCore := spark.NewSparkCoreAdaptor("spark", "53ff72065067544846101187", "f7e2983869e725addd416270cb055ba04a33fdad")
|
||
|
|
||
|
work := func() {
|
||
|
temp, err := sparkCore.Variable("temperature")
|
||
|
|
||
|
if err != nil {
|
||
|
fmt.Println(err.Error())
|
||
|
} else {
|
||
|
fmt.Printf("temp from variable is: %v", temp)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
robot := gobot.NewRobot("spark",
|
||
|
[]gobot.Connection{sparkCore},
|
||
|
[]gobot.Device{},
|
||
|
work,
|
||
|
)
|
||
|
|
||
|
gbot.AddRobot(robot)
|
||
|
|
||
|
gbot.Start()
|
||
|
}
|