aryan2013
aryan2013
Ok, i followed your reply in https://github.com/tuanpmt/espduino/issues/9 , and followed your instruction,, i am now successful. well, few thing not understood, why other subscribe report in debug serial terminal after...
Ok i got it... mqtt.subscribe("/topic/0"); //or mqtt.subscribe("topic"); /_with qos = 0_/ mqtt.subscribe("/topic/1"); mqtt.subscribe("/topic/2"); mqtt.publish("/topic/0", "data0"); three subscribe, so they initially queued and then i found three subscribe successful. Then what...
void subscribe(const char\* topic, uint8_t qos); [inside mqtt.h file] ---- gave me idea to use QoS. But tuan PM, publish is not working. I am getting response after execution of...