2023-05-20 20:25:21 +08:00
|
|
|
//go:build example
|
2017-03-13 23:01:39 +08:00
|
|
|
// +build example
|
2023-05-20 20:25:21 +08:00
|
|
|
|
2017-03-13 23:01:39 +08:00
|
|
|
//
|
|
|
|
// 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"
|
2014-11-07 04:28:04 +08:00
|
|
|
"time"
|
|
|
|
|
2023-05-20 20:25:21 +08:00
|
|
|
"gobot.io/x/gobot/v2"
|
|
|
|
"gobot.io/x/gobot/v2/platforms/mqtt"
|
2014-11-04 15:29:07 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
func main() {
|
2016-10-03 22:58:43 +08:00
|
|
|
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() {
|
2024-02-11 22:34:50 +08:00
|
|
|
_ = mqttAdaptor.On("hello", func(msg mqtt.Message) {
|
2014-11-05 00:54:06 +08:00
|
|
|
fmt.Println("hello")
|
|
|
|
})
|
2024-02-11 22:34:50 +08:00
|
|
|
_ = 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
|
|
|
|
2024-02-11 22:34:50 +08:00
|
|
|
if err := robot.Start(); err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
2014-11-04 15:29:07 +08:00
|
|
|
}
|