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
|
|
|
|
2016-12-08 13:24:03 +01:00
|
|
|
"gobot.io/x/gobot"
|
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
|
|
|
|
2016-10-18 21:08:25 +02:00
|
|
|
robot.Start()
|
2013-10-22 16:45:31 -07:00
|
|
|
}
|