Skip to content

Commit

Permalink
Fixes 15836
Browse files Browse the repository at this point in the history
Signed-off-by: Jamie Townsend <[email protected]>
  • Loading branch information
jamietownsend committed Nov 6, 2023
1 parent 4e7d736 commit dc3ca47
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion bundles/org.openhab.binding.luxtronikheatpump/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ The following channels are holding read only values:
| highPressure | Number:Pressure | x | High pressure |
| lowPressure | Number:Pressure | x | Low pressure |
| outputCompressorHeating | Switch | x | Output compressor heating |
| controlSignalCirculatingPump | Number:Energy | x | Control signal circulating pump |
| controlSignalCirculatingPump | Number | x | Control signal circulating pump |
| fanSpeed | Number | x | Fan speed |
| temperatureSafetyLimitFloorHeating | Switch | x | Safety temperature limiter floor heating |
| powerTargetValue | Number:Energy | x | Power target value |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -938,7 +938,7 @@ public enum HeatpumpChannel {
* Control signal circulating pump
* (original: Steuersignal Umwälzpumpe)
*/
CHANNEL_HZIO_PWM(183, "controlSignalCirculatingPump", NumberItem.class, Units.PERCENT, false, null),
CHANNEL_HZIO_PWM(183, "controlSignalCirculatingPump", NumberItem.class, null, false, null),

/**
* Fan speed
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1572,10 +1572,9 @@
</channel-type>

<channel-type id="controlSignalCirculatingPump" advanced="true">
<item-type>Number:Energy</item-type>
<item-type>Number</item-type>
<label>Control Signal Circulating Pump</label>
<category>Energy</category>
<state pattern="%.1f %%" readOnly="true"/>
<state pattern="%.1f" readOnly="true"/>
</channel-type>

<channel-type id="fanSpeed" advanced="true">
Expand Down

0 comments on commit dc3ca47

Please sign in to comment.