diff --git a/ESP-IDF_Robot/tutorial/docs/build/simplepdf/.buildinfo b/ESP-IDF_Robot/tutorial/docs/build/simplepdf/.buildinfo index 2ea3d5c56..cefadaa45 100644 --- a/ESP-IDF_Robot/tutorial/docs/build/simplepdf/.buildinfo +++ b/ESP-IDF_Robot/tutorial/docs/build/simplepdf/.buildinfo @@ -1,4 +1,4 @@ # Sphinx build info version 1 # This file records the configuration used when building these files. When it is not found, a full rebuild will be done. -config: 0753b556a93640c5f3cf8ac69d082fb8 +config: e1a8d4294570be1e3b2a3c57bd785450 tags: 62a1e7829a13fc7881b6498c52484ec0 diff --git a/ESP-IDF_Robot/tutorial/docs/build/simplepdf/esp-idf_espnow_rc-car.pdf b/ESP-IDF_Robot/tutorial/docs/build/simplepdf/esp-idf_espnow_rc-car.pdf index 86769ea2f..602300f26 100644 Binary files a/ESP-IDF_Robot/tutorial/docs/build/simplepdf/esp-idf_espnow_rc-car.pdf and b/ESP-IDF_Robot/tutorial/docs/build/simplepdf/esp-idf_espnow_rc-car.pdf differ diff --git a/ESP-IDF_Robot/tutorial/docs/build/simplepdf/index.html b/ESP-IDF_Robot/tutorial/docs/build/simplepdf/index.html index cd783bfcf..3e9304ecb 100644 --- a/ESP-IDF_Robot/tutorial/docs/build/simplepdf/index.html +++ b/ESP-IDF_Robot/tutorial/docs/build/simplepdf/index.html @@ -116,6 +116,11 @@ Configuration Variables +
  • + + Reading Joystick x- and y- Axis Values + +
  • Sending & Ecapsulating Data @@ -139,8 +144,8 @@
  • - - Receiving & De-Ecapsulating Data + + Receiving & Extracting Data
  • @@ -1018,6 +1023,14 @@ This enables fine-grained speed control, supports differential drive configurati +
    +

    + Reading Joystick x- and y- Axis Values + + ¶ + +

    +

    Sending & Ecapsulating Data @@ -1134,10 +1147,10 @@ This enables fine-grained speed control, supports differential drive configurati

    -
    +

    - Receiving & De-Ecapsulating Data - + Receiving & Extracting Data +

    @@ -1185,10 +1198,12 @@ This enables fine-grained speed control, supports differential drive configurati // Initialize NVS esp_err_t ret = nvs_flash_init(); - if (ret == ESP_ERR_NVS_NO_FREE_PAGES || ret == ESP_ERR_NVS_NEW_VERSION_FOUND) { + if (ret == ESP_ERR_NVS_NO_FREE_PAGES || + ret == ESP_ERR_NVS_NEW_VERSION_FOUND) { ESP_ERROR_CHECK( nvs_flash_erase() ); ret = nvs_flash_init(); } + ESP_ERROR_CHECK( ret ); wifi_init(); ESP_ERROR_CHECK(esp_now_init());