我已在自己的主机上安装了freeboard,我无法将其连接到PubNub。 我已经尝试使用mqtt插件通过MQTT连接到pubnub,但它不起作用.. 如何将PubNub连接到干舷?我自己的干舷实例不是由freeboard.io
托管的仪表板答案 0 :(得分:3)
我可以给你一些指示。虽然PubNub supports MQTT没有必要使用该协议。根据您使用的IoT设备,您可以将标准PubNub连接与任何SDK一起使用,以获得您的设备支持的语言。
如果您确实想使用MQTT,可以使用Python和Paho:
import paho.mqtt.client as mqtt
publish_key = "<your publish key>"
subscribe_key = "<your subscribe key>"
client_id = "<your unique client identifier>"
client = mqtt.Client(client_id=publish_key + "/" + subscribe_key + "/" + client_id)
client.connect("mqtt.pndsn.com", 1883, 60)
client.publish("<topic to publish>", json.dumps({ "hi": 10 }))
此代码的作用是将JSON数据发布到MQTT主题(PubNub术语中的通道)。
而不是&#34; hi = 10&#34;您可以发布适合仪表板的数据。我坚持要包含一个Unix时间戳,以便您知道数据何时提交。
您还可以使用PubNub standard publish with Python或任何其他语言(there's more than 70 SDKs)。
import time
from pubnub.pnconfiguration import PNConfiguration
from pubnub.pubnub import PubNub
pnconfig = PNConfiguration()
pnconfig.publish_key = '<your publish key>'
pubnub = PubNub(pnconfig)
## makes a timetoken that is easily converted to
## a JavaScript date object in a web browser
javascript_timetoken = int(time.time() * 1000)
pubnub.publish().channel("my_channel").message({
'tt': javascript_timetoken,
'foo': 'bar'
}).sync()
现在该消息已发布,可以在Web浏览器中打开的仪表板中实时接收。如果在发布消息时仪表板未打开,则可以稍后使用PubNub storage and playback检索该消息。
您可以在密钥信息标签下的PubNub Admin Dashboard中启用邮件保留。
这是订阅的JavaScript code在带有仪表板的网页中的样子。
<script src="https://cdn.pubnub.com/sdk/javascript/pubnub.4.20.2.js"></script>
<script>
var pubnub = new PubNub({
subscribeKey: "mySubscribeKey",
ssl: true
});
var time;
pubnub.addListener({
message: function(message) {
time = new Date(message.tt);
// do more stuff
// write data to the dashboard
},
});
pubnub.subscribe({
channels: ['my_channel']
});
// Get messages from the channel history in case there were
// updates that happened while the browser was not yet opened
pubnub.history(
{
channel: 'my_channel',
reverse: true, // Setting to true will traverse the time line in reverse starting with the oldest message first.
count: 100, // how many items to fetch
stringifiedTimeToken: true, // false is the default
start: '123123123123', // start time token to fetch
end: '123123123133' // end timetoken to fetch
},
function (status, response) {
response.messages.forEach(function (message) {
time = new Date(message.tt);
// do more stuff
// write data to the dashboard
});
}
);