The Buildstorm platform simplifies the integration of IoT core features onto ESP32 Hardware, from basic IoT functionalities to advanced features like OTA updates and provisioning.
Every user action, spanning HTTP requests, MQTT publishing, Telemetry/Attribute updates, and OTA, is recorded as an event and smoothly handled in the background, ensuring that all APIs operate without blocking. To ensure this seamless operation, the platform runs a system task.
This establishes a robust foundation for your upcoming IoT project.
Supported features:
- Device provisioning
- Telemetry update
- Shared/Client Attributes
- Web OTA
- Local websever OTA
- BLE Device Provisioning
- Generate the Provision Device Key/Secret following the article Device Provisioning Setup.
- Update the following WiFi and ThingsBoard parameters in
app_config.h
of the example. - Use the respective sdkconfig and partition.csv files for esp32/esp32s3.
- This configuration will be same accross all examples.
#define TEST_WIFI_SSID "YOUR WIFI SSID"
#define TEST_WIFI_PASSWORD "YOUR WIFI PWD"
#define PROVISION_DEVICE_KEY "your provision device key"
#define PROVISION_DEVICE_SECRET "your provision device secret"
#define MODEM_POWERKEY_GPIO_PIN 5
#define MODEM_RESETKEY_GPIO_PIN 4
#define MODEM_RX_UART_PIN 16
#define MODEM_TX_UART_PIN 17
#define MODEM_UART_NUM 2
#define APN "airtelgprs.com"
#define USERID ""
#define PASSWORD ""
- Quectel m66
- Quectel m95
- Quectel BG96
- Quectel EC200U
The platform has been successfully tested on ESP32 and ESP32S3. In the upcoming days, it will be extended to all versions of the ESP32 chips.
Name | BLE | OTA |
---|---|---|
ESP32 | Supported | Supported |
ESP32 S3 | Supported | Supported |