您好我正在使用https://github.com/pubnub/arduino中的PubNubsubscriber示例 我能够接收消息,只要我收到消息,一切都运行正常,如果有一段时间过去说20秒没有新消息arduino似乎冻结在“等待消息(订阅)” 并且无法接收新的传入消息
任何人都知道为什么会这样?
/*
PubNub sample subscribe client
This sample client will subscribe to and handle raw PubNub messages
(not doing any JSON decoding). It does so with a randomly generated
UUID.
Circuit:
* Ethernet shield attached to pins 10, 11, 12, 13
* (Optional.) LED on pin 8 for reception indication.
* Pin A4 unconnected (noise source for random number generator)
created 23 October 2012
by Petr Baudis
https://github.com/pubnub/pubnub-api/tree/master/arduino
This code is in the public domain.
*/
#include <SPI.h>
#include <Ethernet.h>
#include <PubNub.h>
// Some Ethernet shields have a MAC address printed on a sticker on the shield;
// fill in that address here, or choose your own at random:
byte mac[] = { 0xDE, 0xAD, 0xBE, 0xEF, 0xFE, 0xED };
const int subLedPin = 8;
char pubkey[] =
char subkey[] =
char channel[] = "hello_world";
char uuid[] = "xxxxxxxx-xxxx-4444-9999-xxxxxxxxxxxx";
void random_uuid() {
randomSeed(analogRead(4) + millis() * 1024);
snprintf(uuid, sizeof(uuid), "%04lx%04lx-%04lx-4444-9999-%04lx%04lx%04lx",
random(0x10000), random(0x10000), random(0x10000),
random(0x10000), random(0x10000), random(0x10000));
}
void setup()
{
pinMode(subLedPin, OUTPUT);
digitalWrite(subLedPin, LOW);
Serial.begin(9600);
Serial.println("Serial set up");
while (!Ethernet.begin(mac)) {
Serial.println("Ethernet setup error");
delay(1000);
}
Serial.println("Ethernet set up");
PubNub.begin(pubkey, subkey);
random_uuid();
PubNub.set_uuid(uuid);
Serial.println("PubNub set up");
}
void flash(int ledPin)
{
/* Flash LED three times. */
for (int i = 0; i < 3; i++) {
digitalWrite(ledPin, HIGH);
delay(100);
digitalWrite(ledPin, LOW);
delay(100);
}
}
void loop()
{
Ethernet.maintain();
PubSubClient *client;
Serial.println("waiting for a message (subscribe)");
client = PubNub.subscribe(channel);
if (!client) {
Serial.println("subscription error");
delay(1000);
return;
}
Serial.print("Received: ");
while (client->wait_for_data()) {
char c = client->read();
Serial.print(c);
}
client->stop();
Serial.println();
flash(subLedPin);
delay(200);
}
答案 0 :(得分:1)
我花了一些时间,发现问题出在void PubSubClient::stop()
函数中,同时试图获得时间。现在我不太确定这里到底发生了什么,以及为什么它会卡住,虽然看起来如果你在这里终止连接并跳过时间跟踪,它就像一个魅力。
这是PubNub.cpp中的原始代码:
void PubSubClient::stop()
{
if ((!available() && !connected()) || !json_enabled) {
PubNub_BASE_CLIENT::stop();
return;
}
/* We are still connected. Read the rest of the stream so that
* we catch the timetoken. */
while (wait_for_data()) {
char ch = read();
this->_state_input(ch, NULL, 0);
}
json_enabled = false;
}
我已经(暂时)替换为:
void PubSubClient::stop()
{
PubNub_BASE_CLIENT::stop();
return;
}
现在是一种解决方法(没有时间表),我希望这有助于找到合适的解决方案。