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
In the Microchip "buttonPresses" tutorial, in the section titled " Step 2: Sending MQTT Messages to the Cloud", there is a variable that creates the thing name and subscribe topic.
The code in the tutorial doesn't append the thing name and prevents AWS from understanding the package.
The code in the tutorial is-
sprintf(tutorialMqttTopic, "buttonPresses");
It should be
sprintf(tutorialMqttTopic, "%s/buttonPresses", cid);
This caused my no end of grief and caused AWS to block my account.
The text was updated successfully, but these errors were encountered:
In the Microchip "buttonPresses" tutorial, in the section titled " Step 2: Sending MQTT Messages to the Cloud", there is a variable that creates the thing name and subscribe topic.
The code in the tutorial doesn't append the thing name and prevents AWS from understanding the package.
The code in the tutorial is-
sprintf(tutorialMqttTopic, "buttonPresses");
It should be
sprintf(tutorialMqttTopic, "%s/buttonPresses", cid);
This caused my no end of grief and caused AWS to block my account.
The text was updated successfully, but these errors were encountered: