Просмотр исходного кода

Merge branch 'docs/fix_esp_local_control_formatting' into 'master'

docs/en: fix formatting for esp_local_control component

See merge request espressif/esp-idf!6678
Mahavir Jain 6 лет назад
Родитель
Сommit
7c1fceb810
1 измененных файлов с 2 добавлено и 2 удалено
  1. 2 2
      docs/en/api-reference/protocols/esp_local_ctrl.rst

+ 2 - 2
docs/en/api-reference/protocols/esp_local_ctrl.rst

@@ -81,7 +81,7 @@ Similarly for HTTPS transport:
 
 
 Creating a property
-===================
+-------------------
 
 Now that we know how to start the **esp_local_ctrl** service, let's add a property to it. Each property must have a unique `name` (string), a `type` (e.g. enum), `flags` (bit fields) and `size`.
 
@@ -171,7 +171,7 @@ Here is an example of `set_prop_values()` handler. Notice how we restrict from w
 For complete example see :example:`protocols/esp_local_ctrl`
 
 Client Side Implementation
-==========================
+--------------------------
 
 The client side implementation will have establish a protocomm session with the device first, over the supported mode of transport, and then send and receive protobuf messages understood by the **esp_local_ctrl** service. The service will translate these messages into requests and then call the appropriate handlers (set / get). Then, the generated response for each handler is again packed into a protobuf message and transmitted back to the client.