You are using staging server - a separate instance of the ESP Component Registry that allows you to try distribution tools and processes without affecting the real registry.
# wolfSSL Template Project This is an example minimally viable wolfSSL + wolfMQTT template to get started with your own project. For details on wolfMQTT [see the wolfMQTT Manual](https://www.wolfssl.com/documentation/manuals/wolfmqtt/wolfMQTT-Manual.pdf). ### Prerequisites It is assumed the [ESP-IDF environment](https://docs.espressif.com/projects/esp-idf/en/latest/esp32/get-started/) has been installed. ### Files Included - [main.c](./main/main.c) with a simple call to an Espressif library (`ESP_LOGI`) and a call to a wolfSSL library (`esp_ShowExtendedSystemInfo`) . - See [components/wolfssl/include](./components/wolfssl/include/user_settings.h) directory to edit the wolfSSL `user_settings.h`. - Edit [main/CMakeLists.txt](./main/CMakeLists.txt) to add/remove source files. - The [components/wolfssl/CMakeLists.txt](./components/wolfssl/CMakeLists.txt) typically does not need to be changed. - Optional [VisualGDB Project](./VisualGDB/wolfssl_template_IDF_v5.1_ESP32.vgdbproj) for Visual Studio using ESP32 and ESP-IDF v5.1. - Edit the project [CMakeLists.txt](./CMakeLists.txt) to optionally point this project's wolfSSL component source code at a different directory: ``` set(WOLFSSL_ROOT "~/workspace/wolfssl-other-source") ``` ## Getting Started with ESP Registry Managed Components: The quickest way to get started is with wolfMQTT Managed Components. Coming soon. See [Staging Site](https://components-staging.espressif.com/components/gojimmypi/mywolfmqtt). ## Getting Started with ESP-IDF local examples: Here's an example using the command-line [idf.py](https://docs.espressif.com/projects/esp-idf/en/latest/esp32/api-guides/tools/idf-py.html): Edit your `WRK_IDF_PATH`to point to your ESP-IDF install directory. ``` WRK_IDF_PATH=/mnt/c/SysGCC/esp32/esp-idf/v5.1 echo "Run export.sh from ${WRK_IDF_PATH}" . ${WRK_IDF_PATH}/export.sh # build the example: idf.py build # flash the code onto the serial device at /dev/ttyS19 idf.py flash -p /dev/ttyS19 -b 115200 # build, flash, and view UART output with one command: idf.py flash -p /dev/ttyS19 -b 115200 monitor ``` Press `Ctrl+]` to exit `idf.py monitor`. See [additional monitor keyboard commands](https://docs.espressif.com/projects/esp-idf/en/latest/esp32/api-guides/tools/idf-monitor.html). ## Other Examples: For examples, see: - [wolfSSL template](https://github.com/wolfSSL/wolfssl/tree/master/IDE/Espressif/ESP-IDF/examples/template/README.md) - [Benchmark](https://github.com/wolfSSL/wolfssl/tree/master/IDE/Espressif/ESP-IDF/examples/wolfssl_benchmark/README.md) - [TLS Client](https://github.com/wolfSSL/wolfssl/tree/master/IDE/Espressif/ESP-IDF/examples/wolfssl_client/README.md) - [TLS Server](https://github.com/wolfSSL/wolfssl/tree/master/IDE/Espressif/ESP-IDF/examples/wolfssl_server/README.md) - [Test](https://github.com/wolfSSL/wolfssl/tree/master/IDE/Espressif/ESP-IDF/examples/wolfssl_test) - [wolfssl-examples](https://github.com/wolfSSL/wolfssl-examples/tree/master/ESP32) - [wolfssh-examples](https://github.com/wolfSSL/wolfssh-examples/tree/main/Espressif)
To create a project from this example, run:
idf.py create-project-from-example "gojimmypi/mywolfmqtt^1.18.0-preview2:wolfmqtt_template"