hybridgroup.gobot/examples/hello.go

27 lines
332 B
Go
Raw Normal View History

//go:build example
// +build example
//
// Do not build by default.
2013-10-23 07:45:31 +08:00
package main
import (
2013-11-14 12:47:21 +08:00
"fmt"
2014-05-23 11:18:45 +08:00
"time"
2014-07-11 08:21:21 +08:00
"gobot.io/x/gobot/v2"
2013-10-23 07:45:31 +08:00
)
func main() {
2014-05-23 11:18:45 +08:00
robot := gobot.NewRobot(
func() {
2014-06-08 11:57:51 +08:00
gobot.Every(500*time.Millisecond, func() { fmt.Println("Greetings human") })
2013-11-14 12:47:21 +08:00
},
2014-05-23 11:18:45 +08:00
)
2013-11-14 12:47:21 +08:00
if err := robot.Start(); err != nil {
panic(err)
}
2013-10-23 07:45:31 +08:00
}