# iotmer (ESP-IDF component) IOTMER IoT Platform SDK for ESP-IDF: Wi‑Fi provisioning, NVS credentials, MQTT (TLS), telemetry, presence (LWT), optional HTTPS OTA. ## GitHub - Repo: `https://github.com/iotmertech/iotmer-sdk-esp-idf` - Issues: `https://github.com/iotmertech/iotmer-sdk-esp-idf/issues` ## Requirements - ESP-IDF: >= 5.0 - Targets: ESP32 family (see `idf_component.yml`) ## Installation (ESP Component Manager) Add to your project's `idf_component.yml`: ```yaml dependencies: iotmertech/iotmer: "*" ``` Then: ```bash idf.py update-dependencies ``` ## Usage ```c #include "iotmer_client.h" iotmer_config_t cfg = IOTMER_CONFIG_DEFAULT(); iotmer_client_t client; iotmer_init(&client, &cfg); iotmer_connect(&client); ``` ## Docs - Project docs: `https://docs.iotmer.com/` - ESP-IDF SDK guide: `https://docs.iotmer.com/docs/sdk/esp-idf/intro` ## Examples Full example projects live in the repository: `https://github.com/iotmertech/iotmer-sdk-esp-idf/tree/main/examples`
idf.py add-dependency "iotmertech/iotmer^0.1.2"