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

@ -95,7 +95,7 @@ SI7005::getTemperatureRaw () {
}
int
SI7005::getTemperatureCelcius () {
SI7005::getTemperatureCelsius () {
uint16_t rawTemperature = getTemperatureRaw();
rawTemperature = ((rawTemperature >> 2) & 0xFFFF);
last_temperature = ((float)rawTemperature) / SI7005_TEMPERATURE_SLOPE - SI7005_TEMPERATURE_OFFSET;

View File

@ -82,7 +82,7 @@ class SI7005 : public ITemperatureSensor, public IHumiditySensor {
/**
* Get temperature measurement.
*/
int getTemperatureCelcius ();
int getTemperatureCelsius ();
/**
* Get relative humidity measurement.