The Buildstorm platform simplifies the integration of Kaa IoT core features onto ESP32 Hardware, from basic IoT pub/sub functionalities to advanced features like commands and OTA updates.
The architecture is based on the core IDF APIs, complemented by a C++ wrapper tailored for application use, guaranteeing non-blocking operation of all APIs. Each user action, including HTTP requests, MQTT publishing, Shadow updates, and OTA, is logged as an event and seamlessly managed in the background. To maintain this seamless operation, the platform effectively runs a system task.
This establishes a robust foundation for your upcoming IoT project.
Supported Kaa IoT features:
- MQTT pub/sub
- Telemetry updates
- Metadata management
- Command processing
- OTA firmware updates
- Kaa OTA Updates
- [API Reference Guide]
- Follow this article to setup Kaa IoT and generate application version and endpoint token.
- Same will be used for all examples
- Update the following WiFi and Kaa IoT parameters in
app_config.h
of the example
#define TEST_WIFI_SSID "Wifi-Router"
#define TEST_WIFI_PASSWORD "Wifi Passwors"
#define KAA_URI "mqtt://mqtt.cloud.kaaiot.com"
#define KAA_PORT 1883
#define KAA_APPLICATION_VERSION "Your Kaa device application version"
#define KAA_ENDPOINT_TOKEN "Endpoint Token"
Name | BLE | OTA |
---|---|---|
ESP32 | Not Supported | Supported |
ESP32 S3 | Supported | Supported |
While our Arduino IoT platform currently supports BLE on ESP32S3, these capabilities are accessible on our ESP-IDF platform for all ESP32 SoCs. These functionalities will soon be integrated into Arduino. Until then, you can explore the IDF version of our platform ESP32-idf Kaa IoT Platform.
- On serial terminal, press
m
to display device menu