mqtt.rst 8.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178
  1. ESP-MQTT
  2. ========
  3. Overview
  4. --------
  5. ESP-MQTT is an implementation of `MQTT <https://mqtt.org/>`_ protocol client. MQTT is a lightweight publish/subscribe messaging protocol.
  6. Features
  7. --------
  8. * Support MQTT over TCP, SSL with Mbed TLS, MQTT over WebSocket, and MQTT over WebSocket Secure
  9. * Easy to setup with URI
  10. * Multiple instances (multiple clients in one application)
  11. * Support subscribing, publishing, authentication, last will messages, keep alive pings, and all 3 Quality of Service (QoS) levels (it should be a fully functional client)
  12. Application Examples
  13. ---------------------
  14. * :example:`protocols/mqtt/tcp`: MQTT over TCP, default port 1883
  15. * :example:`protocols/mqtt/ssl`: MQTT over TLS, default port 8883
  16. * :example:`protocols/mqtt/ssl_ds`: MQTT over TLS using digital signature peripheral for authentication, default port 8883
  17. * :example:`protocols/mqtt/ssl_mutual_auth`: MQTT over TLS using certificates for authentication, default port 8883
  18. * :example:`protocols/mqtt/ssl_psk`: MQTT over TLS using pre-shared keys for authentication, default port 8883
  19. * :example:`protocols/mqtt/ws`: MQTT over WebSocket, default port 80
  20. * :example:`protocols/mqtt/wss`: MQTT over WebSocket Secure, default port 443
  21. Configuration
  22. -------------
  23. The configuration is made by setting fields in ``esp_mqtt_client_config_t`` struct. The configuration struct has the following sub structs to configure different aspects of the client operation.
  24. * :cpp:member:`broker<esp_mqtt_client_config::broker>` - Allow to set address and security verification.
  25. * :cpp:member:`credentials<esp_mqtt_client_config::credentials>` - Client credentials for authentication.
  26. * :cpp:member:`session<esp_mqtt_client_config::session>` - Configuration for MQTT session aspects.
  27. * :cpp:member:`network<esp_mqtt_client_config::network>` - Networking related configuration.
  28. * :cpp:member:`task<esp_mqtt_client_config::task>` - Allow to configure FreeRTOS task.
  29. * :cpp:member:`buffer<esp_mqtt_client_config::buffer>` - Buffer size for input and output.
  30. In the following sections, the most common aspects are detailed.
  31. Broker
  32. ^^^^^^^^^^^
  33. ===========
  34. Address
  35. ===========
  36. Broker address can be set by usage of ``broker.address`` struct. The configuration can be made by usage of ``uri`` field or the combination of ``hostname``, ``transport`` and ``port``. Optionally, ``path`` could be set, this field is useful in WebSocket connections.
  37. The ``uri`` field is used in the format ``scheme://hostname:port/path``.
  38. - Curently support ``mqtt``, ``mqtts``, ``ws``, ``wss`` schemes
  39. - MQTT over TCP samples:
  40. - ``mqtt://mqtt.eclipseprojects.io``: MQTT over TCP, default port 1883
  41. - ``mqtt://mqtt.eclipseprojects.io:1884``: MQTT over TCP, port 1884
  42. - ``mqtt://username:password@mqtt.eclipseprojects.io:1884``: MQTT over TCP,
  43. port 1884, with username and password
  44. - MQTT over SSL samples:
  45. - ``mqtts://mqtt.eclipseprojects.io``: MQTT over SSL, port 8883
  46. - ``mqtts://mqtt.eclipseprojects.io:8884``: MQTT over SSL, port 8884
  47. - MQTT over WebSocket samples:
  48. - ``ws://mqtt.eclipseprojects.io:80/mqtt``
  49. - MQTT over WebSocket Secure samples:
  50. - ``wss://mqtt.eclipseprojects.io:443/mqtt``
  51. - Minimal configurations:
  52. .. code:: c
  53. const esp_mqtt_client_config_t mqtt_cfg = {
  54. .broker.address.uri = "mqtt://mqtt.eclipseprojects.io",
  55. };
  56. esp_mqtt_client_handle_t client = esp_mqtt_client_init(&mqtt_cfg);
  57. esp_mqtt_client_register_event(client, ESP_EVENT_ANY_ID, mqtt_event_handler, client);
  58. esp_mqtt_client_start(client);
  59. .. note:: By default MQTT client uses event loop library to post related MQTT events (connected, subscribed, published, etc.).
  60. ============
  61. Verification
  62. ============
  63. For secure connections with TLS used, and to guarantee Broker's identity, the ``broker.verification`` struct must be set.
  64. The broker certificate may be set in PEM or DER format. To select DER, the equivalent ``_len`` field must be set. Otherwise, a null-terminated string in PEM format should be provided to ``certificate`` field.
  65. - Get certificate from server, example: ``mqtt.eclipseprojects.io``
  66. ``openssl s_client -showcerts -connect mqtt.eclipseprojects.io:8883 </dev/null 2>/dev/null|openssl x509 -outform PEM >mqtt_eclipse_org.pem``
  67. - Check the sample application: ``examples/mqtt_ssl``
  68. - Configuration:
  69. .. code:: c
  70. const esp_mqtt_client_config_t mqtt_cfg = {
  71. .broker = {
  72. .address.uri = "mqtts://mqtt.eclipseprojects.io:8883",
  73. .verification.certificate = (const char *)mqtt_eclipse_org_pem_start,
  74. },
  75. };
  76. For details about other fields, please check the `API Reference`_ and :ref:`esp_tls_server_verification`.
  77. Client Credentials
  78. ^^^^^^^^^^^^^^^^^^
  79. All client related credentials are under the ``credentials`` field.
  80. * ``username``: pointer to the username used for connecting to the broker, can also be set by URI
  81. * ``client_id``: pointer to the client ID, defaults to ``ESP32_%CHIPID%`` where ``%CHIPID%`` are the last 3 bytes of MAC address in hex format
  82. ==============
  83. Authentication
  84. ==============
  85. It's possible to set authentication parameters through the ``authentication`` field. The client supports the following authentication methods:
  86. * ``authentication.password``: use a password by setting
  87. * ``authentication.certificate`` and ``authentication.key``: mutual authentication with TLS, and both can be provided in PEM or DER format
  88. * ``authentication.use_secure_element``: use secure element available in ESP32-WROOM-32SE
  89. * ``authentication.ds_data``: use Digital Signature Peripheral available in some Espressif devices
  90. Session
  91. ^^^^^^^^^^^
  92. For MQTT session related configurations, ``section`` fields should be used.
  93. =======================
  94. Last Will and Testament
  95. =======================
  96. MQTT allows for a last will and testament (LWT) message to notify other clients when a client ungracefully disconnects. This is configured by the following fields in the ``esp_mqtt_client_config_t.session.last_will`` struct.
  97. * ``topic``: pointer to the LWT message topic
  98. * ``msg``: pointer to the LWT message
  99. * ``msg_len``: length of the LWT message, required if ``msg`` is not null-terminated
  100. * ``qos``: quality of service for the LWT message
  101. * ``retain``: specifies the retain flag of the LWT message
  102. Change Settings in Project Configuration Menu
  103. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  104. The settings for MQTT can be found using ``idf.py menuconfig``, under ``Component config`` > ``ESP-MQTT Configuration``.
  105. The following settings are available:
  106. - :ref:`CONFIG_MQTT_PROTOCOL_311`: enable 3.1.1 version of MQTT protocol
  107. - :ref:`CONFIG_MQTT_TRANSPORT_SSL` and :ref:`CONFIG_MQTT_TRANSPORT_WEBSOCKET`: enable specific MQTT transport layer, such as SSL, WEBSOCKET, and WEBSOCKET_SECURE
  108. - :ref:`CONFIG_MQTT_CUSTOM_OUTBOX`: disable default implementation of mqtt_outbox, so a specific implementation can be supplied
  109. Events
  110. ------
  111. The following events may be posted by the MQTT client:
  112. * ``MQTT_EVENT_BEFORE_CONNECT``: The client is initialized and about to start connecting to the broker.
  113. * ``MQTT_EVENT_CONNECTED``: The client has successfully established a connection to the broker. The client is now ready to send and receive data.
  114. * ``MQTT_EVENT_DISCONNECTED``: The client has aborted the connection due to being unable to read or write data, e.g. because the server is unavailable.
  115. * ``MQTT_EVENT_SUBSCRIBED``: The broker has acknowledged the client's subscribe request. The event data will contain the message ID of the subscribe message.
  116. * ``MQTT_EVENT_UNSUBSCRIBED``: The broker has acknowledged the client's unsubscribe request. The event data will contain the message ID of the unsubscribe message.
  117. * ``MQTT_EVENT_PUBLISHED``: The broker has acknowledged the client's publish message. This will only be posted for QoS level 1 and 2, as level 0 does not use acknowledgements. The event data will contain the message ID of the publish message.
  118. * ``MQTT_EVENT_DATA``: The client has received a publish message. The event data contains: message ID, name of the topic it was published to, received data and its length. For data that exceeds the internal buffer, multiple ``MQTT_EVENT_DATA`` will be posted and ``current_data_offset`` and ``total_data_len`` from event data updated to keep track of the fragmented message.
  119. * ``MQTT_EVENT_ERROR``: The client has encountered an error. ``esp_mqtt_error_type_t`` from ``error_handle`` in the event data can be used to further determine the type of the error. The type of error will determine which parts of the ``error_handle`` struct is filled.
  120. API Reference
  121. -------------
  122. .. include-build-file:: inc/mqtt_client.inc