blinker 怎么通过mqtt 订阅与发布消息?
官方有例子if (BLINKER_PROTOCOL_MQTT != NULL) {
String pub_topic = "/device/" + Blinker.deviceName() + "/s";
String pub_data = "{\"toDevice\":\"the device name you need pub to\",\"data\":{\"hello\":\"blinker\"}}";
BLINKER_PROTOCOL_MQTT->publish(pub_topic.c_str(), pub_data.c_str());
}
可以发布消息,
BLINKER_PROTOCOL_MQTT->subscribeTopic(sub_topic.c_str()); 也可以订阅,但在哪里注册回调函数? blinker lib使用Adafruit_MQTT_Library实现MQTT通信,您可以通过该库例程,了解用法https://github.com/adafruit/Adafruit_MQTT_Library/tree/master/examples 本帖最后由 blinkersb123 于 2022-3-29 16:57 编辑
阿里云服务。怎么搞
页:
[1]