You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thanks for creating this example. It is really helpful. I can successfully connect and send messages to AWS. However, when I send a message back to ESP32 from AWS, using the topic "inTopic", I do not receive anything. Is this an issue with the script or am I missing anything?
Thanks
The text was updated successfully, but these errors were encountered:
Paste this line client.onMessage(messageReceived);
before connect() method in setup() method of the script and replace receiveMessage(){} funcation with following funcation
void messageReceived(String &topic, String &payload) {
Serial.println("incoming: " + topic + " - " + payload);
Thanks for creating this example. It is really helpful. I can successfully connect and send messages to AWS. However, when I send a message back to ESP32 from AWS, using the topic "inTopic", I do not receive anything. Is this an issue with the script or am I missing anything?
Thanks
The text was updated successfully, but these errors were encountered: