hybridgroup.gobot/examples/hello.go

23 lines
290 B
Go
Raw Normal View History

2013-10-23 07:45:31 +08:00
package main
import (
2013-11-14 12:47:21 +08:00
"fmt"
2013-11-28 12:05:45 +08:00
"github.com/hybridgroup/gobot"
2014-05-23 11:18:45 +08:00
"time"
2013-10-23 07:45:31 +08:00
)
func main() {
2014-05-23 11:18:45 +08:00
gbot := gobot.NewGobot()
robot := gobot.NewRobot(
"hello",
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
2014-07-09 09:36:14 +08:00
gbot.AddRobot(robot)
2014-05-23 11:18:45 +08:00
gbot.Start()
2013-10-23 07:45:31 +08:00
}