以下設定以2017-04-10-raspbian-jessie版本為準
------ 安裝
sudo apt-get install mosquitto
sudo apt-get install mosquitto-clients
------ 本地測試 (以topic=mqtt_test為例)
開啟兩個putty,在第1個putty視窗輸入指令:
mosquitto_sub -d -t mqtt_test
在第2個putty視窗輸入指令:
mosquitto_pub -d -t mqtt_test -m "Hello mqtt"
在第1個putty視窗應該可以看到“Hello mqtt”訊息
------ 遠端測試 (以topic=mqtt_test為例,假設broker IP=192.168.1.210)
在第1個putty視窗輸入指令:
mosquitto_sub –h 192.168.1.210 -t mqtt_test
在第2個putty視窗輸入指令:
mosquitto_pub -h 192.168.1.210 -t mqtt_test -m "Hello mqtt"
全站熱搜
留言列表