Search found 12 matches
- Tue Sep 03, 2024 11:53 am
- Forum: Opentherm Gateway Forum
- Topic: Converting Member IDs to Manufacturer names
- Replies: 4
- Views: 4159
Re: Converting Member IDs to Manufacturer names
That is disappointing indeed. Thanks for the equipment matrix hint though!
- Thu Aug 29, 2024 3:26 pm
- Forum: Opentherm Gateway Forum
- Topic: Converting Member IDs to Manufacturer names
- Replies: 4
- Views: 4159
Converting Member IDs to Manufacturer names
At the moment I am revamping the OpenTherm Gateway Home Assistant integration. One of the things I would like to improve is to be able to show manufacturer names based on the Member IDs found in the OpenTherm protocol. As I don't have access to all brands of boilers and thermostat, I can only determ...
- Sat Aug 24, 2024 2:40 pm
- Forum: Opentherm Gateway Forum
- Topic: Firmware upgrade with otmonitor not working
- Replies: 6
- Views: 2931
Re: Firmware upgrade with otmonitor not working
That last version works like a charm!
Thanks again for your efforts!
Code: Select all
$ ./otmonitor-x64 --upgrade=gateway-5.8.hex
Current firmware version: 5.5
Target firmware version: 5.8
Switching gateway to self-programming mode
Bootloader version 1.1: F00-FFF
Firmware download succeeded - 0 retries
- Sat Aug 24, 2024 1:37 pm
- Forum: Opentherm Gateway Forum
- Topic: Firmware upgrade with otmonitor not working
- Replies: 6
- Views: 2931
Re: Firmware upgrade with otmonitor not working
Thanks for the effort, it helped me make some progress. I also found that it is likely related to the setup I'm using, more on that later on in this post. First things first, I tried the debug version, both through the GUI and from the command line. The output was the following: GUI: $ ./otmonitor-x...
- Fri Aug 23, 2024 5:34 pm
- Forum: Opentherm Gateway Forum
- Topic: Firmware upgrade with otmonitor not working
- Replies: 6
- Views: 2931
Re: Firmware upgrade with otmonitor not working
When I click "Program", the button remains pushed in (see screenshot) and the entire GUI becomes unresponsive. I can only close the application with ctrl-c on the command line (or with `kill` I guess, but I haven't tried that). This behavior persists in the latest version from github. Scre...
- Thu Aug 22, 2024 3:32 pm
- Forum: Opentherm Gateway Forum
- Topic: Firmware upgrade with otmonitor not working
- Replies: 6
- Views: 2931
Firmware upgrade with otmonitor not working
When trying to upgrade the firmware on my gateway through otmonitor I'm running into the following: Using the GUI, I can load the file, but as soon as I press "Program" the application stops responding. The only output on the console is this one line when loading the file: $ ./otmonitor re...
- Tue Nov 15, 2022 11:56 pm
- Forum: Opentherm Gateway Forum
- Topic: Unknown DataID forwarded to thermostat as Write Ack
- Replies: 5
- Views: 3345
Re: Unknown DataID forwarded to thermostat as Write Ack
Thank you for the clarification. Does this apply to MsgID 23 (room setpoint 2) as well? I tried to go through the sources, but I'm not fluent in assembly. From what I can tell it does not apply in that case, but I may very well be mistaken.
- Tue Nov 15, 2022 12:01 am
- Forum: Opentherm Gateway Forum
- Topic: Unknown DataID forwarded to thermostat as Write Ack
- Replies: 5
- Views: 3345
Re: Unknown DataID forwarded to thermostat as Write Ack
The reporter of the bug provided additional info from the OpenTherm Gateway firmware sources. It seems this is intended behavior for good reason.
Topic can be closed!
Topic can be closed!
- Sat Nov 12, 2022 5:20 pm
- Forum: Opentherm Gateway Forum
- Topic: Unknown DataID forwarded to thermostat as Write Ack
- Replies: 5
- Views: 3345
Unknown DataID forwarded to thermostat as Write Ack
While investigating a bug report against pyotgw ( here ) I noticed the following: When the boiler sends an Unknown DataID packet, the gateway forwards this as a Write Ack packet to the thermostat. This may be intended behavior, but it seems odd to me to take the value from the boiler (in this case 0...
- Wed Feb 03, 2021 12:33 am
- Forum: Opentherm Gateway Forum
- Topic: Undocumented error code MPC
- Replies: 2
- Views: 2039
Re: Undocumented error code MPC
Haha that's awesome! Thanks for the info. I already added an 'MPC' error code in my dev version of pyotgw
guess I'll have to remove it again.
I'm trying to cover all of the more or less reasonable user inputs for the pyotgw update. If I find anything else I will of course update on this forum.

I'm trying to cover all of the more or less reasonable user inputs for the pyotgw update. If I find anything else I will of course update on this forum.
- Tue Feb 02, 2021 4:41 pm
- Forum: Opentherm Gateway Forum
- Topic: Undocumented error code MPC
- Replies: 2
- Views: 2039
Undocumented error code MPC
While playing around with the new firmware v5.0 I ran into the following: command: C2=9.999 reponse: MPC Unfortunately I can't find this error code anywhere in the docs. I'm guessing it has something to do with the float parsing (C2=9.99 is accepted without issues) but I would like to get some more ...
- Tue Feb 02, 2021 4:26 pm
- Forum: Opentherm Gateway Forum
- Topic: New Commands: SH2, CS2, CH2
- Replies: 12
- Views: 13137
Re: New Commands: SH2, CS2, CH2
The C2 and H2 commands you requested have been implemented in OTGW firmware version 5.0. I didn't implement S2, mostly because I couldn't find a matching message ID for that function. While implementing the new features into pyotgw I noticed that these new commands don't respond with the usual form...