Search found 309 matches
- Mon Nov 18, 2024 7:56 am
- Forum: ESP RainMaker
- Topic: Rainmaker app wont claim when ESP32-PICO-V3 used
- Replies: 1
- Views: 531
Re: Rainmaker app wont claim when ESP32-PICO-V3 used
Irrespective of what ESP32 module is being used, claiming happens only if a certificate is not found in the fctry partition. Once claiming is done, it happens again only if the flash is erased.In your case, when claiming gets skipped, does the firmware proceed through provisioning and then fail due ...
- Fri Nov 15, 2024 5:55 am
- Forum: ESP RainMaker
- Topic: ESP RainMaker learn about the param
- Replies: 2
- Views: 622
Re: ESP RainMaker learn about the param
PROP_TYPE_READ: Read permission PROP_FLAG_WRITE: Write permission PROP_FLAG_PERSIST: Value will be stored in persistent memory and retrieved on a reboot PROP_FLAG_TIME_SERIES: Value stored in Time Series data on cloud PROP_FLAG_SIMPLE_TIME_SERIES: Value stored in Simple Time Series data on cloud Par...
- Tue Nov 05, 2024 4:22 pm
- Forum: ESP RainMaker
- Topic: In case of power fail
- Replies: 1
- Views: 940
Re: In case of power fail
The firmware does not really get the last data stored in the cloud. Rather, the cloud always has the last data reported by the device. For parameters like "Name", the PROP_FLAG_PERSIST flag is provided while creating the parameter as you can see here . This ensures that the value is stored in persis...
- Tue Nov 05, 2024 4:14 pm
- Forum: ESP RainMaker
- Topic: Viewing MQTT messages
- Replies: 5
- Views: 1026
Re: Viewing MQTT messages
You cannot check the messages received by the MQTT broker with public RainMaker, but you can see the messages being published by your device by adding a print here.
- Tue Oct 29, 2024 1:48 pm
- Forum: ESP RainMaker
- Topic: Mapping Rainmaker devices/controls to Google Home and Alexa
- Replies: 4
- Views: 1570
Re: Mapping Rainmaker devices/controls to Google Home and Alexa
I am guessing that this issue has been resolved, based on the discussions on the other thread. Google Home shows a color picker which is a combination of hue and saturation.
- Tue Oct 29, 2024 1:46 pm
- Forum: ESP RainMaker
- Topic: Rainmaker won't compile with ESP32C2 under Arduino IDE
- Replies: 3
- Views: 1310
Re: Rainmaker won't compile with ESP32C2 under Arduino IDE
The pre-built static libraries for Arduino do not yet support esp32c2, as you can see here. Were you trying to use Arduino as an esp-idf component instead? Or did you try compiling the libraries yourself?
- Mon Oct 28, 2024 5:48 pm
- Forum: ESP RainMaker
- Topic: Google Home behavior?
- Replies: 3
- Views: 1188
Re: Google Home behavior?
Are you using the default led_light example or is this with your own project? Have you checked the serial terminal logs to see if there's any discrepancy?
- Thu Oct 24, 2024 2:09 pm
- Forum: ESP RainMaker
- Topic: Mapping Rainmaker devices/controls to Google Home and Alexa
- Replies: 4
- Views: 1570
Re: Mapping Rainmaker devices/controls to Google Home and Alexa
The Alexa/GVA data model is not that flexible to allow showing any parameter. Check the standard types docs here to understand what all gets mapped to Alexa/GVA.
- Thu Oct 24, 2024 2:07 pm
- Forum: ESP RainMaker
- Topic: How to setup a parameter to show bar graph in app
- Replies: 1
- Views: 980
Re: How to setup a parameter to show bar graph in app
Check out the docs here to understand time series data. You will need to use the full featured time series data to see graphs on the phone app. In your code, just change the param creation line to include PROP_FLAG_TIME_SERIES esp_rmaker_param_t *voltage = esp_rmaker_param_create("V", NULL, esp_rmak...
- Wed Oct 16, 2024 2:34 pm
- Forum: ESP RainMaker
- Topic: Insights suddenly stops getting updates
- Replies: 3
- Views: 2286
Re: Insights suddenly stops getting updates
Hello, sorry for not responding earlier, but we indeed see that there was no data received in Insights for a few days but it started again on 12th. Did anything change on your side making it work again?