The Buildstorm platform simplifies the integration of AWS IoT core features onto ESP32 Hardware, from basic IoT functionalities to advanced features like OTA updates and provisioning.
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 features:
- MQTT pub/sub
- Shadow updates
- Jobs
- Web OTA using AWS jobs and S3 bucket
- Local webserver OTA
- Provision by claim
- BLE Device Provisioning
- Wifi and Cellular co-existence
- This library uses esp-idf v5.2.0
- Follow this article to setup AWS and generate provisioning certificates.
- Same certificates will be used for all examples
- Copy the generated claim certificates to
examples\_Certificates\claimCerts
folder and rename them as followsaws-root-ca.pem
claim-certificate.pem
claim-private.pem.key
- Copy the generated thing certificates to
examples\_Certificates\thingCerts
folder and rename them as followsaws-root-ca.pem
thing-certificate.pem
thing-private.pem.key
- Use the repsective sdkconfig files for esp32, esp32s3. The partions settings is already taken care in the sdkconfigs.
- Update the following WiFi and AWS parameters in
app_config.h
of the example
#define TEST_WIFI_SSID "YOUR WIFI SSID"
#define TEST_WIFI_PASSWORD "YOUR WIFI PWD"
#define AWS_IOT_MQTT_HOST "YOUR AWS HOST"
#define AWS_IOT_MQTT_PORT 8883
#define AWS_PROVISION_TEMPLATE_NAME "YOUR PROVISION TEMPLATE"
#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 ""
Name | BLE | OTA |
---|---|---|
ESP32 | Supported | Supported |
ESP32 S3 | Supported | Supported |