mirror of
https://github.com/eclipse/upm.git
synced 2025-07-01 17:31:13 +03:00
spelling: correct many misspellings of celsius
Signed-off-by: Jon Trulson <jtrulson@ics.com>
This commit is contained in:
@ -31,7 +31,7 @@
|
||||
using namespace upm;
|
||||
using namespace std;
|
||||
|
||||
// conversion from fahrenheit to celcius and back
|
||||
// conversion from fahrenheit to celsius and back
|
||||
|
||||
static float f2c(float f)
|
||||
{
|
||||
|
@ -74,12 +74,12 @@ namespace upm {
|
||||
~TZEMT400();
|
||||
|
||||
/**
|
||||
* Return the current measured temperature in Celcius or
|
||||
* Return the current measured temperature in Celsius or
|
||||
* Fahrenheit.
|
||||
*
|
||||
* @param fahrenheit true to return data in Fahrenheit, false for
|
||||
* Celicus. Celcius is the default.
|
||||
* @return The temperature in degrees Celcius or Fahrenheit.
|
||||
* Celicus. Celsius is the default.
|
||||
* @return The temperature in degrees Celsius or Fahrenheit.
|
||||
*/
|
||||
float getTemperature(bool fahrenheit=false);
|
||||
|
||||
@ -100,25 +100,25 @@ namespace upm {
|
||||
std::string getOperatingState();
|
||||
|
||||
/**
|
||||
* Return the current Heating Point temperature in Celcius or
|
||||
* Return the current Heating Point temperature in Celsius or
|
||||
* Fahrenheit. This is the temperature at which the thermostat
|
||||
* will want to engage Heat.
|
||||
*
|
||||
* @param fahrenheit true to return data in Fahrenheit, false for
|
||||
* Celicus. Celcius is the default.
|
||||
* @return The Heating Point temperature in degrees Celcius or
|
||||
* Celicus. Celsius is the default.
|
||||
* @return The Heating Point temperature in degrees Celsius or
|
||||
* Fahrenheit.
|
||||
*/
|
||||
float getHeatingPointTemperature(bool fahrenheit=false);
|
||||
|
||||
/**
|
||||
* Return the current Cooling Point temperature in Celcius or
|
||||
* Return the current Cooling Point temperature in Celsius or
|
||||
* Fahrenheit. This is the temperature at which the thermostat
|
||||
* will want to engage Cooling.
|
||||
*
|
||||
* @param fahrenheit true to return data in Fahrenheit, false for
|
||||
* Celicus. Celcius is the default.
|
||||
* @return The Cooling Point temperature in degrees Celcius or
|
||||
* Celicus. Celsius is the default.
|
||||
* @return The Cooling Point temperature in degrees Celsius or
|
||||
* Fahrenheit.
|
||||
*/
|
||||
float getCoolingPointTemperature(bool fahrenheit=false);
|
||||
|
Reference in New Issue
Block a user