Skip to content

Commit

Permalink
* Updated with small corrections to min/max
Browse files Browse the repository at this point in the history
  • Loading branch information
tlykkeberg-grundfos committed Apr 7, 2022
1 parent 2237907 commit 974580a
Showing 1 changed file with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,18 +35,18 @@ limitations under the License.
<attribute side="server" code="0x0008" define="MAX_CONST_SPEED" type="INT16U" isNullable="true" min="0x0000" max="0xFFFE" writable="false" optional="true">MaxConstSpeed</attribute>
<attribute side="server" code="0x0009" define="MIN_CONST_FLOW" type="INT16U" isNullable="true" min="0x0000" max="0xFFFE" writable="false" optional="true">MinConstFlow</attribute>
<attribute side="server" code="0x000A" define="MAX_CONST_FLOW" type="INT16U" isNullable="true" min="0x0000" max="0xFFFE" writable="false" optional="true">MaxConstFlow</attribute>
<attribute side="server" code="0x000B" define="MIN_CONST_TEMP" type="INT16S" isNullable="true" min="0x954D" max="0x7FFF" writable="false" optional="true">MinConstTemp</attribute>
<attribute side="server" code="0x000B" define="MIN_CONST_TEMP" type="INT16S" isNullable="true" min="-27315" max="32767" writable="false" optional="true">MinConstTemp</attribute>
<attribute side="server" code="0x000C" define="MAX_CONST_TEMP" type="INT16S" isNullable="true" min="0x954D" max="0x7FFF" writable="false" optional="true">MaxConstTemp</attribute>
<attribute side="server" code="0x0010" define="PUMP_STATUS" type="BITMAP16" writable="false" default="0x0000" reportable="true" optional="true">PumpStatus</attribute>
<attribute side="server" code="0x0011" define="EFFECTIVE_OPERATION_MODE" type="ENUM8" min="0x00" max="0x03" writable="false" optional="false">EffectiveOperationMode</attribute>
<attribute side="server" code="0x0012" define="EFFECTIVE_CONTROL_MODE" type="ENUM8" min="0x00" max="0x07" writable="false" optional="false">EffectiveControlMode</attribute>
<attribute side="server" code="0x0011" define="EFFECTIVE_OPERATION_MODE" type="PumpOperationMode" min="0x00" max="0x03" writable="false" optional="false">EffectiveOperationMode</attribute>
<attribute side="server" code="0x0012" define="EFFECTIVE_CONTROL_MODE" type="PumpControlMode" min="0x00" max="0x07" writable="false" optional="false">EffectiveControlMode</attribute>
<attribute side="server" code="0x0013" define="CAPACITY" type="INT16S" isNullable="true" min="0x0000" max="0x7FFF" writable="false" reportable="true" optional="false">Capacity</attribute>
<attribute side="server" code="0x0014" define="SPEED" type="INT16U" isNullable="true" min="0x0000" max="0xFFFE" writable="false" optional="true">Speed</attribute>
<attribute side="server" code="0x0015" define="LIFETIME_RUNNING_HOURS" type="INT24U" min="0x000000" max="0xFFFFFE" writable="true" default="0x000000" optional="true">LifetimeRunningHours</attribute>
<attribute side="server" code="0x0016" define="PUMP_POWER" type="INT24U" isNullable="true" min="0x000000" max="0xFFFFFE" writable="false" optional="true">Power</attribute>
<attribute side="server" code="0x0017" define="LIFETIME_ENERGY_CONSUMED" type="INT32U" min="0x000000" max="0xFFFFFE" writable="true" default="0x00000000" optional="true">LifetimeEnergyConsumed</attribute>
<attribute side="server" code="0x0020" define="OPERATION_MODE" type="ENUM8" min="0x00" max="0x03" writable="true" default="0x00" optional="false">OperationMode</attribute>
<attribute side="server" code="0x0021" define="CONTROL_MODE" type="ENUM8" min="0x00" max="0x07" writable="true" default="0x00" optional="true">ControlMode</attribute>
<attribute side="server" code="0x0015" define="LIFETIME_RUNNING_HOURS" type="INT24U" writable="true" default="0x000000" optional="true">LifetimeRunningHours</attribute>
<attribute side="server" code="0x0016" define="PUMP_POWER" type="INT24U" isNullable="true" writable="false" optional="true">Power</attribute>
<attribute side="server" code="0x0017" define="LIFETIME_ENERGY_CONSUMED" type="INT32U" writable="true" default="0x00000000" optional="true">LifetimeEnergyConsumed</attribute>
<attribute side="server" code="0x0020" define="OPERATION_MODE" type="PumpOperationMode" min="0x00" max="0x03" writable="true" default="0x00" optional="false">OperationMode</attribute>
<attribute side="server" code="0x0021" define="CONTROL_MODE" type="PumpControlMode" min="0x00" max="0x07" writable="true" default="0x00" optional="true">ControlMode</attribute>
<attribute side="server" code="0x0022" define="PUMP_ALARM_MASK" type="BITMAP16" writable="false" default="0x0000" optional="true">AlarmMask</attribute>

<event side="server" code="0x00" priority="info" name="SupplyVoltageLow">
Expand Down

0 comments on commit 974580a

Please sign in to comment.