EDIT: I’d be interested to know too how to tell what of the opentherm parameters a boiler supports. I’ve tested other OT sensors and they return wild values, I assume that means those particular sensors are not available on my boiler. Just interested to know what others have discovered in this area.
I meant with ‘aggressively heating’ that it was heating up really fast, with too much overshoot. So for me, these parameters should be changed, but they are not really explained. Even in the esphome documentation, i did not find a lot. Is the 0.4 a percentage with maximum 100 for example, what happens when taking a higher or lower value. It would also help if you could find a table with used values in certain circumstances (regarding how big is the room, how well isolated is the house/age of the house, …). There is a autotune function in esphome, but it seems not to produces always good results. I did not try it yet however.
Regarding the number of sensors your boiler supports, i think it’s trial and error. I think most of the basic sensors are everywhere supported. Probably you could find some more info when looking in other opentherm open source initiatives.
Hi has anyone been able to use powercalc in conjunction with your diy OT install to get a fairly accurate gas consumption reading?? My gas meter doesn’t have the p1 port nor the magnetic ticker…
@shcherban, do you also have a blueprint for the thermostat so you can add automations and schedules for the thermostat? I have it working but only by manual controle. Other question do you also have a sugestion for a hardware knop to change see the temperature and change it? By girlfriend like physical buttons/knops to see and change the temp.
Dont know are you talking about master shield or thermostat (the one with ble sensor in bundle).
For the thermostat (with BLE) schedule is in our plans to do as a built-in functions. For any other generic usage from HomeAssistant - i should check HA docs on how to create schedules and maybe will write some post on Diyless bolg.
Physical control would be nice, but it requires a bit more work, like case, new board, knob itself, some display and software to glue all this together. We are considering this as some ‘next gen’ of our thermostat, but it wouldn’t be so fast(
@shcherban and @Keeze thanks both for your reply. Unfortunatly i used the ESP8266. I didn’t know at the time i started the project that the phiscal controle would have been an issue for the other users in my house. As this is not possible as off now with this setup what would you advice to use?
Hi Dolphinman, I have this exact problem too. Bought that kit last week. At first it seemed to work but after a while OT conn loss. Did you happen to find a solution yet?? I have an Intergas Kombi Kompakt HReco. The only thing that works is sending commands like on/off to the boiler. So there is some communication going on… but no data coming back to indicate what boiler status is after that.
Maybe boiler is waiting for some vendor-specific command, and if its not issued within some period - it rejects further communication.
Did i understood correctly that:
Hi
Im using the DIYLESS code and Im facing with an problem (I guess) about pid modulation. The “float ophi = 50;”, but when is heating for the first time, this just increase by 1% until it reach its destination: 50. When the thermostat declare its heat reach, thermostat send command “off” to boiler. On the next “heat” command ![Screenshot 2023-02-04 at 22.50.34|635x415]
(after about 1 hour) the boiler-target-temperature stays on 50, no modulation, only the flame level seems to modulate. Is it normal what is happening?
The screenshots above are from its first running after I flash it.
Helllo
Great post. Yesterday I have set up the ophentherm termostat, hot water works like a charm, i love it, but heating is not turning on. Thats my thermostat:
Do you have mqtt explorer installed? That way you can see whats happening and check if your actually sending / receiving the setpoint and temperatures.
We’ve released a second version of the thermostat, which is based on ESP32-S3, so it gets a bit better Bluetooth performance if you are using Xiaomi BLE Thermometer. Also it has a tiny display and a few buttons to be operated without HomeAssistant/web UI (just in case).
Also we added an expansion connector there, which is connected to ESP32. You can either write your own firmware or drop us some ideas which features would be nice to have. Using that connector you can drive/communicate to some external devices.
Nice work! I have the first version of this thermostat and it serves me well. I printed a small case and attached it to my boiler and send it commands over WiFi. I like the idea of a screen and buttons a lot, but the main barrier to buying on of these for me would be the external power supply. Most households have no power supply near their thermostat wire and running cable there has a low WAF. The strategically placed couch on your product image is there for good reason
Are there any plans to make a version with an integrated buck converter so it can run over the power supplied on the opentherm cable? Or am I missing something here?
Yep, WAF factor if a bit barrier for now)
And regarding integrated supply - yes, we are aiming for it, however it requires a software support aside of hardware changes: opentherm library should be able to request for power providing as well as firmware should be rewritten itself, because for now we are using Arduino framework which is great for fast start but it uses a lot of energy (relatively). You might notice than thermostat is heating itself because CPU isnt sleeping. We are investigationg ESP IDF to use some advanced powersave technics, that would lower device’s power appetite.
BTW we have also released a firmware update (if you are using pre-flashed version), which adds scheduler, and some minor bugfixes.
Ah, bringing deep sleep to the device over firmware update would be amazing!
I don’t use your firmware personally and switched to ESPHome, I’m the kind of person that likes control over their PID loops. Did you consider using ESPHome? You get deep sleep for free.
Here’s the ESPHome config I’m running on your device:
Working on it) Our firmware is more for people not too friendly with those technical details. But of course we are encouraging any extension/new usecase, that was primary goal our HW was built for. After we get up and running ESPHome version - will try investigationg on opentherm powering from boiler.
In most boilers you can select a heating curve. There are two cases:
a sensor for external temperature is connected to the boiler
a sensor for external temperature is NOT connected to the boiler
In the first case the target boiler water temperature can be looked up.
In the second case it can not, so at best a default external temperature is used. Than the selected heating curve translates to a certain target boiler water temperature.
What happens next depends on the “algorithm” of the boiler.
a) if you have an on/off system than the boiler could heat up to the value of the heating curve, this can be done with full power, or with some throttled down power.
b) if you have a thermostat that modulates (opentherm) than the heating curve temperature becomes IMHO at best some secondary parameter, because the target boiler water temperature is set by the thermostat.
Anyway the target temperature has to be translated into flame height (the amount of heat added). Flame height is calculated by the boiler, mostly by proprietary closed algorithms.
Or put in other words: heating curves are obsolete with a modulating thermostat. From experimenting with heating curves my finding was that they did make no differences in behaviour of the system.
Please Comment ! Maybe I 'm totally wrong, would be happy to hear that.