1
0
mirror of https://github.com/hybridgroup/gobot.git synced 2025-04-24 13:48:49 +08:00

27 lines
332 B
Go
Raw Normal View History

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