Search found 260 matches

by ESP_Piyush
Wed Sep 27, 2023 5:49 pm
Forum: ESP RainMaker
Topic: OTA Timeout on Public Deployment
Replies: 7
Views: 24169

Re: OTA Timeout on Public Deployment

Hello, sorry for the delay, but I could indeed reproduce this issue and the team has identified the root cause. This will be fixed shortly.
by ESP_Piyush
Wed Sep 27, 2023 5:45 pm
Forum: ESP RainMaker
Topic: How to change the wifi AP credentials on an existing (claimed) node?
Replies: 3
Views: 41808

Re: How to change the wifi AP credentials on an existing (claimed) node?

You can check the app_reset component of esp-rainmaker/examples/common which is used in all the RainMaker examples.
by ESP_Piyush
Fri Sep 22, 2023 11:34 am
Forum: ESP RainMaker
Topic: Mobile app UI Issues
Replies: 6
Views: 33905

Re: Mobile app UI Issues

Issue 3 is a regression, but the other 2 could not be reproduced by our team. Can you let us know your Phone make and model, Android version, RainMaker app version and preferably a screen recording of the issue?
by ESP_Piyush
Thu Sep 21, 2023 5:42 pm
Forum: ESP RainMaker
Topic: Running a config web server in parallel to Rainmaker
Replies: 16
Views: 25484

Re: Running a config web server in parallel to Rainmaker

Any reason why these cannot be done using custom Rainmaker device/service and custom params? Just that the configuration would then be from the Rainmaker app instead of a web browser.
by ESP_Piyush
Thu Sep 21, 2023 5:04 pm
Forum: ESP RainMaker
Topic: Running a config web server in parallel to Rainmaker
Replies: 16
Views: 25484

Re: Running a config web server in parallel to Rainmaker

Local control support could be enabled only at compile time and with Arduino, we had experience some memory issues, because of which it was kept disabled. We have now made some changes to allow enabling it at runtime, so that it can be enabled after provisioning has ended and the memory re-claimed. ...
by ESP_Piyush
Wed Sep 20, 2023 7:27 pm
Forum: ESP RainMaker
Topic: Rainmaker configure Telegram API credentials externally without hard coding
Replies: 6
Views: 54263

Re: Rainmaker configure Telegram API credentials externally without hard coding

Just pass PROP_FLAG_PERSIST in addition to PROP_FLAG_READ to PROP_FLAG_WRITE while creating your parameter so that it also gets stored in the persistent memory. Eg. Param Token_param("Token", "custom.param.level", value(DEFAULT_NAME2), PROP_FLAG_READ | PROP_FLAG_WRITE | PROP_FLAG_PERSIST); On a boot...
by ESP_Piyush
Wed Sep 20, 2023 5:03 pm
Forum: ESP RainMaker
Topic: Rainmaker OTA Field Over Writes
Replies: 1
Views: 16269

Re: Rainmaker OTA Field Over Writes

For the regular firmware upgrades, the advanced fields should not be populated since these are read from the firmware image header by the cloud backend (if not provided explicitly) and also by the OTA Upgrade firmware code itself. These advanced fields are intended only for 1) Encrypted firmware ima...
by ESP_Piyush
Fri Sep 15, 2023 2:32 pm
Forum: ESP RainMaker
Topic: OTA Timeout on Public Deployment
Replies: 7
Views: 24169

Re: OTA Timeout on Public Deployment

OTA validity is optional and handled on the node side. Does your use case indeed require the validity? Those are optional fields and if not set, the jobs will stay valid forever and finish only after nodes report either success or rejected.
by ESP_Piyush
Fri Sep 15, 2023 2:26 pm
Forum: ESP RainMaker
Topic: Public to Private Node Migration
Replies: 2
Views: 19567

Re: Public to Private Node Migration

If your firmware has self claiming or assisted claiming which was used directly by your beta users, then it would be a quite hard. However, if you have yourselves claimed the nodes using host claiming, atleast you would have the admin access. Having a copy of public certificates would have been very...
by ESP_Piyush
Mon Sep 11, 2023 4:47 pm
Forum: ESP RainMaker
Topic: Running a config web server in parallel to Rainmaker
Replies: 16
Views: 25484

Re: Running a config web server in parallel to Rainmaker

At least for the esp-idf RainMaker, a web server can co-exist and that is what is done for local control. However, this web server is also part of esp-idf and so, has better integration with RainMaker. Unfortunately, I have no experience with the Arduino libraries for web server. Can you share the e...