spelling: correct many misspellings of celsius

Signed-off-by: Jon Trulson <jtrulson@ics.com>
This commit is contained in:
Jon Trulson
2016-07-12 16:50:39 -06:00
parent 0fb56356fb
commit baec9966f0
49 changed files with 144 additions and 141 deletions

View File

@ -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)
{

View File

@ -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);