hybridgroup.gobot/examples/hello.go

24 lines
318 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",
nil,
nil,
func() {
gobot.Every(0.5*time.Second, 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-05-23 11:18:45 +08:00
gbot.Robots = append(gbot.Robots, robot)
gbot.Start()
2013-10-23 07:45:31 +08:00
}