mirror of
https://github.com/h2zero/esp-nimble-cpp.git
synced 2024-11-22 05:00:55 +01:00
Fix Error in converting EddystoneTLM negative temperatures to float | resolves h2zero/NimBLE-Arduino#675
This commit is contained in:
parent
9c1f1adf7a
commit
2447af6a4d
1 changed files with 2 additions and 2 deletions
|
@ -81,7 +81,7 @@ uint16_t NimBLEEddystoneTLM::getVolt() {
|
||||||
* @return The temperature value.
|
* @return The temperature value.
|
||||||
*/
|
*/
|
||||||
float NimBLEEddystoneTLM::getTemp() {
|
float NimBLEEddystoneTLM::getTemp() {
|
||||||
return ENDIAN_CHANGE_U16(m_eddystoneData.temp) / 256.0f;
|
return (int16_t)ENDIAN_CHANGE_U16(m_eddystoneData.temp) / 256.0f;
|
||||||
} // getTemp
|
} // getTemp
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -203,7 +203,7 @@ void NimBLEEddystoneTLM::setVolt(uint16_t volt) {
|
||||||
* @param [in] temp The temperature value.
|
* @param [in] temp The temperature value.
|
||||||
*/
|
*/
|
||||||
void NimBLEEddystoneTLM::setTemp(float temp) {
|
void NimBLEEddystoneTLM::setTemp(float temp) {
|
||||||
m_eddystoneData.temp = (uint16_t)temp;
|
m_eddystoneData.temp = ENDIAN_CHANGE_U16((int16_t)(temp * 256.0f));
|
||||||
} // setTemp
|
} // setTemp
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue