Replies: 1 comment
-
semi-related, there are setup guides at https://github.com/philipparndt/mqtt-analyzer/tree/main/Docs/examples/aws for reference, maybe, don't know, just want to join the fun ;) |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
AWS has a strict implementation of the MQTT standard. Although both AWS and espMqttClient follow the same standard and are largely compliant, care should be taken when implementing. A number of points in specific:
Do not use QoS 2 for AWS!
EMC_WAIT_FOR_CONNACK
set to1
, which is also the default. Leave this default as is.These are the most obvious things to watch out for. There may be other issues. A full list of AWS implementation specifics can be found here: https://docs.aws.amazon.com/iot/latest/developerguide/mqtt.html#mqtt-differences
Beta Was this translation helpful? Give feedback.
All reactions