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

24 lines
291 B
Go
Raw Normal View History

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
"github.com/hybridgroup/gobot"
2013-10-22 16:45:31 -07:00
)
func main() {
2014-05-22 20:18:45 -07:00
gbot := gobot.NewGobot()
robot := gobot.NewRobot(
"hello",
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
2014-07-08 18:36:14 -07:00
gbot.AddRobot(robot)
2014-05-22 20:18:45 -07:00
gbot.Start()
2013-10-22 16:45:31 -07:00
}