Search found 268 matches

by ESP_Piyush
Fri Sep 22, 2023 11:34 am
Forum: ESP RainMaker
Topic: Mobile app UI Issues
Replies: 6
Views: 39287

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: 33704

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: 33704

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: 59478

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: 20566

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: 29156

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: 24006

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: 33704

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...
by ESP_Piyush
Fri Sep 08, 2023 12:09 pm
Forum: ESP RainMaker
Topic: Mobile app UI Issues
Replies: 6
Views: 39287

Re: Mobile app UI Issues

These issues are being looked into by the phone apps team. Thanks for reporting and sorry for the inconvenience.
by ESP_Piyush
Fri Sep 08, 2023 11:20 am
Forum: ESP RainMaker
Topic: Defining groups programatically
Replies: 2
Views: 8742

Re: Defining groups programatically

Device Grouping is a cloud side concept and so, there is no way to create groups from the device side. However, for admin groups (shown on dashboard), there is a concept of creating dynamic groups based on node "type" and "model". Once you define such groups, any nodes satisfying those conditions wi...