2021-04-22 15:29:27 +05:30
|
|
|
# ESP RainMaker Examples
|
2021-04-05 14:23:58 +03:00
|
|
|
|
2021-04-22 15:29:27 +05:30
|
|
|
While building any examples for ESP RainMaker, take care of the following:
|
2022-04-26 12:12:20 +01:00
|
|
|
|
2021-04-22 15:29:27 +05:30
|
|
|
1. Change partition scheme in Arduino IDE to RainMaker (Tools -> Partition Scheme -> RainMaker).
|
2021-04-05 14:23:58 +03:00
|
|
|
2. Once ESP RainMaker gets started, compulsorily call `WiFi.beginProvision()` which is responsible for user-node mapping.
|
2022-04-26 12:12:20 +01:00
|
|
|
3. Use the appropriate provisioning scheme as per the board.
|
2021-04-22 15:29:27 +05:30
|
|
|
- ESP32 Board: BLE Provisioning
|
2022-04-26 12:12:20 +01:00
|
|
|
- ESP32-C3 Board: BLE Provisioning
|
|
|
|
- ESP32-S3 Board: BLE Provisioning
|
|
|
|
- ESP32-S2 Board: SoftAP Provisioning
|
|
|
|
4. Set debug level to Info (Tools -> Core Debug Level -> Info). This is recommended debug level but not mandatory to run RainMaker.
|
2021-04-05 14:23:58 +03:00
|
|
|
|