aws-mqtt-websockets
aws-mqtt-websockets copied to clipboard
Implementation of a middleware to use AWS MQTT service through websockets, aiming the ESP8266 plataform
I have all the code configured correctly. I see 'MQTT subscribed' and sometimes see the 'Message arrived [\"state\":{\"reported\":{\"on\": false}, \"desired\":{\"on\": false}}}' In my Serial Print. I can't see the message...
i was trying to run examples and when i tried to compile this error occurred. What could possible be the cause of this error and how to fix it? ```...
Hi, I enjoyed using this library on ESP8266 for a while now. Worked like charm. Now i tried to make it work on an ESP32, unfortunately there is always an...
Hi guys, firstly, congratulation for this excelent work of integration with aws iot. I'm not a expert about this, I'm woking with esp8266-01 and esp8266-12E. My first issue is related...
libraries/aws-mqtt-websockets-master/AWSWebSocketClient.cpp.o: In function `AWSWebSocketClient::ntpFixNumber(int)': /Users/sunil/Documents/Arduino/libraries/aws-mqtt-websockets-master/AWSWebSocketClient.cpp:526: undefined reference to `gmtime_r' libraries/aws-mqtt-websockets-master/AWSWebSocketClient.cpp.o:(.text._ZN18AWSWebSocketClient17getCurrentTimeNTPEv+0x33): undefined reference to `gmtime_r' libraries/aws-mqtt-websockets-master/AWSWebSocketClient.cpp.o: In function `AWSWebSocketClient::getCurrentTimeNTP()': /Users/sunil/Documents/Arduino/libraries/aws-mqtt-websockets-master/AWSWebSocketClient.cpp:526: undefined reference to `gmtime_r' collect2: error: ld returned 1 exit status...
Hi. I love the look of this library. When I run the example I get Exception (3): epc1=0x4010011d epc2=0x00000000 epc3=0x00000000 excvaddr=0x4002ea20 depc=0x00000000 followed by a stack dump and wdt reset...
How do you get the topicName from the messageArrived handler out of the MessageData argument? I want to be able to know the particular topic that invoked the messageArrived callback....
Hello, I want to create dynamic mqtt topic, such as: ``` String TmpStr = ""; TmpStr = "$aws/things/TestIot/shadow/get/accepted";//example, this topic will input from other channel aws_topic = TmpStr.c_str(); subscribe(); ```...