Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added d.14 & d.15 for hw=7401 #442

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 27 additions & 0 deletions src/vaillant/bai.308523_inc.tsp
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,20 @@ namespace Bai._308523_inc {
@ext(0x7b, 0)
model CirPump is ReadonlyRegister<onoff>;

/** d.14 Desired pump power */
@inherit(r, wi)
@ext(0xa1, 0)
model PumpPowerDesired {
/** PWM-Desired central heating pump power */
@unit("%")
@values(Values_PumpPowerDesired)
value: UCH;
}

/** d.15 Current pump power: Current central heating pump power */
@ext(0x73, 0)
model PumpPower is ReadonlyRegister<UCH>;

/** d.16 room thermostat 24 V: External controls heat demand (Clamp 3'-4') */
@ext(0xe, 0)
model DCRoomthermostat is ReadonlyRegister<onoff>;
Expand All @@ -83,6 +97,10 @@ namespace Bai._308523_inc {
@ext(0x47, 0x4)
model StoragereleaseClock is ReadonlyRegister<yesno>;

/** d.29 PrimaryCircuitFlowRate_DK: primary circuit water flow rate */
@ext(0xfb, 0)
model PrimaryCircuitFlowRate is ReadonlyRegister<uin100>;

/** d.30 Gasvalve */
@inherit(r)
@ext(0xbb, 0)
Expand Down Expand Up @@ -817,6 +835,15 @@ namespace Bai._308523_inc {
@ext(0xfa, 0)
model PrEnergyCountHc3 is InstallRegister<ULG>;

enum Values_PumpPowerDesired {
auto: 0,
_53: 1,
_60: 2,
_70: 3,
_85: 4,
_100: 5,
}

enum Values_Gasvalve {
off: 240,
on: 15,
Expand Down