Type alias HeatingSystem

HeatingSystem: BaseSystemType & {
    coolingModeState: HeatingSystemCoolingState | null;
    currentState: HeatingSystemState | null;
    deviceModel: HeatingSystemDeviceModel | null;
    flowTemperature: number | null;
    flowTemperatureSetPoint: number | null;
}

Type declaration

  • coolingModeState: HeatingSystemCoolingState | null

    The current cooling mode state

  • currentState: HeatingSystemState | null

    The current state

  • deviceModel: HeatingSystemDeviceModel | null

    The device model

  • flowTemperature: number | null

    The current flow temperature as 0-100 C°

  • flowTemperatureSetPoint: number | null

    The current flow set point temperature as 0-100 C°

Generated using TypeDoc