我正在尝试使用Particle Photon上的pubnub发布消息。下面的代码片段直接来自Pubnub示例代码。
代码不会编译,编译器的消息如下:
PubNub/PubNub.h:87:47: error: expected class-name before '{' token
class PubSubClient: public PubNub_BASE_CLIENT {
^
PubNub/PubNub.h: In constructor 'PubSubClient::PubSubClient()':
PubNub/PubNub.h:23:28: error: class 'PubSubClient' does not have any field named 'WiFiClient'
#define PubNub_BASE_CLIENT WiFiClient
^
这个小项目的代码如下:
// This #include statement was automatically added by the Particle IDE.
#include "PubNub/PubNub.h"
char pubkey[] = "<key here>";
char subkey[] = "<key here>";
char channel[] = "Channel";
void setup() {
Serial.begin(9600);
Particle.publish("Serial set up");
PubNub.begin(pubkey, subkey);
}
void loop() {
TCPClient *client;
char msg[64] = "{\"photon\":\"on\"}";
client = PubNub.publish(channel, msg);
client->stop();
Delay (30000);
}
有没有人遇到类似的问题,如果是的话,你可以指导我如何解决这个问题。
感谢。
答案 0 :(得分:3)
看起来Build IDE中可用的库是旧版本(0.0.1)。已修订,最新版本(0.0.2)已发布。
要更新应用中的库,您需要在应用抽屉中删除应用中的PubNub库:
然后转到图书馆抽屉,找到PubNub库,点击包含在应用中,选择您的应用并确认: