Page 1 of 1

Data Logging / Chart for Custom Devices

Posted: Mon Apr 10, 2023 1:01 am
by hasan_
Hi, I can see the built-in available devices, e.g. Temperature has a 'chart' option that shows the sensor data history per day/week/month etc, which is super useful.

How can I have the same for a Custom device, e.g. if I am monitoring CO2 sensor reading? ...is there a way to add that feature?

Thanks!

Re: Data Logging / Chart for Custom Devices

Posted: Mon Apr 10, 2023 5:45 am
by sanketwadekar
While creating your custom parameter, you need to add the PROP_FLAG_TIME_SERIES flag. You can refer this page https://docs.espressif.com/projects/ard ... -param-api

Re: Data Logging / Chart for Custom Devices

Posted: Mon Apr 10, 2023 11:47 pm
by hasan_
sanketwadekar wrote:
Mon Apr 10, 2023 5:45 am
While creating your custom parameter, you need to add the PROP_FLAG_TIME_SERIES flag. You can refer this page https://docs.espressif.com/projects/ard ... -param-api
Thank you!!