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
pull/3650/merge
Mahavir Jain 2019-11-15 13:41:26 +08:00
commit 7c1fceb810
1 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -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.