Search found 268 matches

by ESP_Piyush
Thu Jun 13, 2024 1:18 pm
Forum: ESP RainMaker
Topic: Switch not getting started after connecting to Access Point
Replies: 4
Views: 515

Re: Switch not getting started after connecting to Access Point

RainMaker services begin after getting IP address. Typical logs for working use case are these: I (3464) wifi:connected with MYSSID_2GEXT, aid = 11, channel 4, BW20, bssid = 2c:30:33:54:ba:d9 I (3474) wifi:security: WPA2-PSK, phy: bgn, rssi: -51 I (3474) wifi:pm start, type: 1 I (3474) wifi:dp: 1, b...
by ESP_Piyush
Thu Jun 13, 2024 12:47 pm
Forum: ESP RainMaker
Topic: Switch not getting started after connecting to Access Point
Replies: 4
Views: 515

Re: Switch not getting started after connecting to Access Point

Do you mean that the exact same firmware that was working earlier is not working anymore? Or was this re-compiled with some different ESP IDF version (please provide idf version)? Is this with the standard switch example available on GitHub?
by ESP_Piyush
Wed May 29, 2024 2:33 am
Forum: ESP RainMaker
Topic: Devices appears "offline" but I'v got connection
Replies: 2
Views: 714

Re: Devices appears "offline" but I'v got connection

A fix for this issue has been provided in the latest app v3.3.2, released on 28 May.
by ESP_Piyush
Tue May 28, 2024 2:03 pm
Forum: ESP RainMaker
Topic: Rainmaker instability - repeated uninvited reset
Replies: 1
Views: 560

Re: Rainmaker instability - repeated uninvited reset

Can you provide information about the board being used here? I see this event in between I (126940) app_reset: Release button to trigger factory reset. which means that there is some false button press event detected and then a button release event got triggered much later here I (424570) app_main: ...
by ESP_Piyush
Sat May 18, 2024 5:44 pm
Forum: ESP RainMaker
Topic: where rainmaker stores time series data
Replies: 1
Views: 1497

Re: where rainmaker stores time series data

The time series data is stored on the cloud. The apps just query for it whenever required to plot the graphs.
by ESP_Piyush
Thu Apr 25, 2024 1:09 pm
Forum: ESP RainMaker
Topic: Client Side "GetGroupID" exists?
Replies: 1
Views: 1196

Re: Client Side "GetGroupID" exists?

By client side, do you mean device? Currently they have no way to know the groups they are part of. One of our customers had created a custom RainMaker service to push the group id to nodes, but it was mostly used for mesh node group control, in which the cloud did not have much role to play, apart ...
by ESP_Piyush
Thu Apr 25, 2024 1:04 pm
Forum: ESP RainMaker
Topic: Espressif Rainmaker over Thread solution
Replies: 2
Views: 1919

Re: Espressif Rainmaker over Thread solution

Thread support will be available cleanly in ESP RainMaker firmware and phone apps in about 4-5 weeks time.
by ESP_Piyush
Thu Apr 25, 2024 1:02 pm
Forum: ESP RainMaker
Topic: Modify default range of addSpeedParam()
Replies: 2
Views: 847

Re: Modify default range of addSpeedParam()

Have you tried using ESP_RMAKER_PARAM_SPEED instead of ESP_RMAKER_PARAM_RANGE for the speed parameter?
by ESP_Piyush
Thu Apr 11, 2024 4:02 pm
Forum: ESP RainMaker
Topic: Failing to Upload zip files for OTA
Replies: 1
Views: 734

Re: Failing to Upload zip files for OTA

Hi Josh, The RainMaker OTA functionality itself does not require the zip file, but just the binary. So, as a quick fix, you can simply upload the firmware binary file and use that for OTA. The package itself is required for Insights logs parsing and can be uploaded later after we debug and find a fi...
by ESP_Piyush
Thu Mar 28, 2024 2:16 am
Forum: ESP RainMaker
Topic: Is there a way to make attributes read only in the Rainmaker app?
Replies: 1
Views: 3089

Re: Is there a way to make attributes read only in the Rainmaker app?

Sorry for missing this out. Just pass PROP_FLAG_READ as properties while creating your parameter using esp_rmaker_param_create() . An example can be found here.