-
|
Hi, I've successfully setup an M5Stick C Plus 2 to read data from my Altherma 3 heatpump and able to receive information from it. I did all this to be able to read the power consumption, but unfortunately the Current measured by CT sensor of L1 returns 0, just as the ones for L2 and L3. So, I've googled a lot and found out I can put a Smart Meter (Eastron SDM630 for example) in the power in feed an connect the pulse signals from it to X5M connector (pins 5 and 6) and after some configuration the heatpump should know about the power it uses. So far so good, so here's my question: Would I also be able to read those values with ESPAltherma? Why do I want them in ESPAltherma, why not just read the MQTT data from the Eastron SDM630? That led me to ESPAltherma, only to find out I also can get no power readings. Anyway, I hope this makes sense and someone can answer the question: Would I also be able to read those values with ESPAltherma? Cheers! |
Beta Was this translation helpful? Give feedback.
Replies: 5 comments
-
|
It ought to be easy to count pulses with a GPIO pin on an esp32 - it does the counting for you once you've configured it correctly. So you could connect the pulse output to both an input on the esp32 and on the altherma. Provided the voltages are compatible, of course. |
Beta Was this translation helpful? Give feedback.
-
|
Thanks @divenal, Never thought about feeding the pulse straight into the M5Stick, that may even be a better option as the documentation from Daikin isn't to clear on what connecting the pulse into the Altherma would actually achieve, so maybe it's better to just keep it out of the Altherma all together. |
Beta Was this translation helpful? Give feedback.
-
|
It's working! I've written the code and although I still need to order and install the Eastron SDM630, the ESPAltherma part is done! The code can be found on my fork here: https://github.com/daneedk/ESPAltherma/tree/own The Eastron S0 port is essentially a potential-free, momentary contact, so I simulated this by intermittently connecting the M5StickC Plus 2 GPIO 33 pin to GND. When I've received the Smart Meter and have it installed I'll do the final testing and send in a Pull Request. |
Beta Was this translation helpful? Give feedback.
-
|
Curious (once you install the PM) what differences you see from the meter vs just doing a basic calculation using the |
Beta Was this translation helpful? Give feedback.
-
|
Yes, I'm also very curious of what I will find. |
Beta Was this translation helpful? Give feedback.
It ought to be easy to count pulses with a GPIO pin on an esp32 - it does the counting for you once you've configured it correctly. So you could connect the pulse output to both an input on the esp32 and on the altherma. Provided the voltages are compatible, of course.