Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我使用 ESP8266 SMING 框架作为 MQTT 客户端并使用 node.js mosca MQTT 代理。
我注意到有时,主题没有成功订阅。如何获取已成功订阅 mosca mqtt 代理的主题列表?这样,如果前一次尝试失败,我可以强制重新订阅尝试。
如果无法检索主题列表,我将接受任何可以解决此间歇性订阅问题的答案。
这不会直接回答您的问题,但提供了一种解决方法。Sming 的 MQTT 库中没有检索订阅主题列表的 API 函数。
在 Sming 的示例 MqttClient_Hello 中,运行一个计时器函数,该函数将在 mqtt 连接建立后触发,例如 5 秒。
void resubscribe() { mqtt.subscribe("Your topic"); }