hybridgroup.gobot/examples/mqtt_ping.go

45 lines
774 B
Go
Raw Permalink Normal View History

//go:build example
// +build example
//
// Do not build by default.
2014-11-04 15:29:07 +08:00
package main
import (
2014-11-05 00:54:06 +08:00
"fmt"
"time"
"gobot.io/x/gobot/v2"
"gobot.io/x/gobot/v2/platforms/mqtt"
2014-11-04 15:29:07 +08:00
)
func main() {
mqttAdaptor := mqtt.NewAdaptor("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(msg mqtt.Message) {
2014-11-05 00:54:06 +08:00
fmt.Println("hello")
})
_ = mqttAdaptor.On("hola", func(msg mqtt.Message) {
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
if err := robot.Start(); err != nil {
panic(err)
}
2014-11-04 15:29:07 +08:00
}