hybridgroup.gobot/examples/mqtt_ping.go

41 lines
727 B
Go
Raw Normal View History

2014-11-04 15:29:07 +08:00
package main
import (
2014-11-05 00:54:06 +08:00
"fmt"
"time"
2014-11-05 00:54:06 +08:00
"github.com/hybridgroup/gobot"
"github.com/hybridgroup/gobot/platforms/mqtt"
2014-11-04 15:29:07 +08:00
)
func main() {
2014-11-05 00:54:06 +08:00
gbot := gobot.NewGobot()
2014-11-04 15:29:07 +08:00
mqttAdaptor := mqtt.NewMqttAdaptor("server", "tcp://test.mosquitto.org:1883", "pinger")
2014-11-04 15:29:07 +08:00
2014-11-05 00:54:06 +08:00
work := func() {
mqttAdaptor.On("hello", func(data []byte) {
2014-11-05 00:54:06 +08:00
fmt.Println("hello")
})
mqttAdaptor.On("hola", func(data []byte) {
2014-11-05 00:54:06 +08:00
fmt.Println("hola")
})
data := []byte("o")
gobot.Every(1*time.Second, func() {
mqttAdaptor.Publish("hello", data)
})
gobot.Every(5*time.Second, func() {
mqttAdaptor.Publish("hola", data)
})
}
2014-11-04 15:29:07 +08:00
2014-11-05 00:54:06 +08:00
robot := gobot.NewRobot("mqttBot",
[]gobot.Connection{mqttAdaptor},
work,
)
2014-11-04 15:29:07 +08:00
2014-11-05 00:54:06 +08:00
gbot.AddRobot(robot)
2014-11-04 15:29:07 +08:00
2014-11-05 00:54:06 +08:00
gbot.Start()
2014-11-04 15:29:07 +08:00
}