Options
All
  • Public
  • Public/Protected
  • All
Menu

This class is able to correctly control heating and cooling units.

Hierarchy

  • Thermostat

Index

Properties

newTemperature

newTemperature: number

range

range: number

temperature

temperature: number

Methods

coolingOrHeating

  • coolingOrHeating(): { cooling: boolean; heating: boolean }
  • If the temperature is higher then the newTemperature plus the range heating will be on. If the temperature is lower then the new temeprature minus the range cooling will be on. If temperature is the same as the newTemperature heating and cooling will be off.

    Returns { cooling: boolean; heating: boolean }

    returns a json that says when it needs to heat or cool.

    • cooling: boolean
    • heating: boolean

setSettingsFromJSONThermostat

  • setSettingsFromJSONThermostat(temperature: number, range: number): void
  • This method gets the temperature and range from the other class.

    Parameters

    • temperature: number

      the temperature is stored in this.

    • range: number

      the range is stored in this.

    Returns void

update

  • update(newTemperature: number): void
  • this.newTmperature puts the new temperature in this.newTemperature.

    Parameters

    • newTemperature: number

      newTemperature gets the new temperature from the other class.

    Returns void

Generated using TypeDoc