Search found 259 matches

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

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

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

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

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

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

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...
by ESP_Piyush
Mon Mar 04, 2024 6:30 pm
Forum: ESP RainMaker
Topic: SoftAP mode and BLE mode of WiFi Provisioning can be enabled simultaneously?
Replies: 3
Views: 382

Re: SoftAP mode and BLE mode of WiFi Provisioning can be enabled simultaneously?

This actually depends on whether there is plan to implement this in esp-idf. From what I know, this may not be in near term plan. You may raise a request on esp-idf.
by ESP_Piyush
Mon Mar 04, 2024 6:24 pm
Forum: ESP RainMaker
Topic: Simple Time Series Data
Replies: 2
Views: 392

Re: Simple Time Series Data

Yes, we discovered this issue related to hyphen in device/param name last week and are working on a fix for it.
by ESP_Piyush
Mon Mar 04, 2024 6:23 pm
Forum: ESP RainMaker
Topic: not authorized
Replies: 1
Views: 211

Re: not authorized

Please check if you have the latest phone apps and "claim" at least one device using these app. You may have to erase the flash of the device and then reflash the firmware. On re-provisioning, the device will get "claimed" again.
by ESP_Piyush
Tue Feb 27, 2024 6:40 pm
Forum: ESP RainMaker
Topic: Missing feature in Rain Maker before it can be use in real life
Replies: 4
Views: 424

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

ESP RainMaker has been designed and built in a way that a lot of features can be added without changing the cloud backend. As an example, the timezone, scenes, schedules, reset/reboot features are implemented directly on the firmware and driven from the phone app, with the backend just acting as a c...