Skip to content

Commit

Permalink
Correct fahrenheit degree symbol
Browse files Browse the repository at this point in the history
  • Loading branch information
tyeth committed Jul 12, 2024
1 parent d72cb3b commit d3e54e4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/i2c/WipperSnapper_I2C.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1032,7 +1032,7 @@ void WipperSnapper_Component_I2C::update() {
&WipperSnapper_I2C_Driver::getSensorAmbientTempFPeriodPrv,
&WipperSnapper_I2C_Driver::setSensorAmbientTempFPeriodPrv,
wippersnapper_i2c_v1_SensorType_SENSOR_TYPE_AMBIENT_TEMPERATURE_FAHRENHEIT,
"Ambient Temperature", "°F", event, &sensors_event_t::temperature,
"Ambient Temperature", " degrees F", event, &sensors_event_t::temperature,
sensorsReturningFalse, retries);

// OBJECT_TEMPERATURE sensor (°C)
Expand All @@ -1054,7 +1054,7 @@ void WipperSnapper_Component_I2C::update() {
&WipperSnapper_I2C_Driver::getSensorObjectTempFPeriodPrv,
&WipperSnapper_I2C_Driver::setSensorObjectTempFPeriodPrv,
wippersnapper_i2c_v1_SensorType_SENSOR_TYPE_OBJECT_TEMPERATURE_FAHRENHEIT,
"Object Temperature", "°F", event, &sensors_event_t::temperature,
"Object Temperature", " degrees F", event, &sensors_event_t::temperature,
sensorsReturningFalse, retries);

// RELATIVE_HUMIDITY sensor
Expand Down

0 comments on commit d3e54e4

Please sign in to comment.