Type alias HotWaterSystem

HotWaterSystem: BaseSystemType & {
    collectorTemperature: number | null;
    coolingModeState: HotWaterSystemCoolingModeState | null;
    currentState: HotWaterSystemState | null;
    deviceModel: HotWaterSystemDeviceModel | null;
    waterTemperatureBottom: number | null;
    waterTemperatureSetPoint: number | null;
    waterTemperatureTop: number | null;
}

Type declaration

  • collectorTemperature: number | null

    The current collector temperature as -100-100 C°

  • coolingModeState: HotWaterSystemCoolingModeState | null

    The current cooling mode state

  • currentState: HotWaterSystemState | null

    The current state

  • deviceModel: HotWaterSystemDeviceModel | null

    The device model

  • waterTemperatureBottom: number | null

    The current water bottom temperature as -100-100 C°

  • waterTemperatureSetPoint: number | null

    The current water set point temperature as -100-100 C°

  • waterTemperatureTop: number | null

    The current water top temperature as -100-100 C°

Generated using TypeDoc