Search found 263 matches

by ESP_Piyush
Thu Apr 25, 2024 1:09 pm
Forum: ESP RainMaker
Topic: Client Side "GetGroupID" exists?
Replies: 1
Views: 159

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: 1
Views: 1250

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: 1
Views: 225

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

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

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.
by ESP_Piyush
Sat Mar 23, 2024 2:15 pm
Forum: ESP RainMaker
Topic: Missing feature in Rain Maker before it can be use in real life
Replies: 4
Views: 1527

Re: Missing feature in Rain Maker before it can be use in real life

We were making some quota calculation changes the past few days and have also decided to make the default quota 20 for all users. If you try to claim right now, your quota should automatically increase to 20. Can you give it a shot and check?
by ESP_Piyush
Fri Mar 15, 2024 6:57 am
Forum: ESP RainMaker
Topic: Rainmaker+Matter with private Rainmaker instance
Replies: 1
Views: 1112

Re: Rainmaker+Matter with private Rainmaker instance

For regular led_light example with credentials generated using admin CLI - You should disable claiming (even if not, the credentials will be read from the fctry nvs binary, not via claiming). References can be found in the customer docs . - Read MQTT Host from ESP_RMAKER_MQTT_HOST, Read Node ID from...
by ESP_Piyush
Wed Mar 13, 2024 5:15 pm
Forum: ESP RainMaker
Topic: How to send several values in PROP_FLAG_TIME_SERIES time series in one MQTT message
Replies: 4
Views: 1577

Re: How to send several values in PROP_FLAG_TIME_SERIES time series in one MQTT message

Yes, the understanding is correct. Formatting the data into correct JSON representation and sending on the topics is equivalent to calling the C APIs. You can write your own wrappers for time series data.
by ESP_Piyush
Wed Mar 13, 2024 11:59 am
Forum: ESP RainMaker
Topic: how do you include a water level sensor device in rainmaker?
Replies: 1
Views: 1247

Re: how do you include a water level sensor device in rainmaker?

Water level sensor is not a standard device/parameter, so you will have to create custom ones Eg. custom device: my_device = new Device("Water Sensor", "my.device.water-sensor", NULL); custom param: Eg. Param sensor("Level", "my.param.water-level", value(0), PROP_FLAG_READ); Add custom param to the ...
by ESP_Piyush
Wed Mar 13, 2024 11:50 am
Forum: ESP RainMaker
Topic: How to send several values in PROP_FLAG_TIME_SERIES time series in one MQTT message
Replies: 4
Views: 1577

Re: How to send several values in PROP_FLAG_TIME_SERIES time series in one MQTT message

Currently, we do not have an API for this, but you can format the data as per the specifications mentioned here . Meanwhile, even though sending a message once per minute fits into our fair usage policy, a data point every second is still quite a huge data. Does your use case really require such hig...