Hello, for now my only monitoring of heat pump is Shelly EM with two channels, one for DHW, second for UFH.
I would like to have those nice charts on emoncms.org.
With simple Python script running on RaspberryPI I can get shelly data parsed in lines like this:
2023-11-27 08:43:00 10W UFH
2023-11-27 08:44:00 10W UFH
2023-11-27 08:50:00 500W DHW
What is the correct format and interval to post it to emoncms.org?
My beginners guess is to call url like this every minute:
https://emoncms.org/input/post?apikey=xxxx&node=power_dhw&time=1581112821&csv=10
Not sure if its OK, maybe it can be done in batch with longer interval.
If anyone has Python example for this, please let me know.