Does anybody worked on Quectel EC200 series SIM module for establishing an MQTT connection to cloud
AT+QMTCONN=0,"deployment-fc9b6ee2","chara","chara"
OK
+QMTCONN: 0,1
+QMTSTAT: 0,3
I'm getting the error like the above, but Ideally the response should be +QMTCONN:0,0,0
Solution:Jump to solution
```cpp
#include <PubSubClient.h>
#include <QuectelMQTT.h>
const char* mqtt_server = "your_mqtt_server";...
3 Replies
I have not tried this before , but it will be helpful to check out the Quectel EC200 series AT commands documentation for detailed explanations of the +QMTCONN and +QMTSTAT responses, particularly error codes like "3" so you can find specific troubleshooting steps for this particular error code
I've checked man, based upon the input, I made changes, even though, it is giving the same error.
If someone have any example code, it will be really helpful for me
Solution
Hope this helps