diff --git a/fhem/CHANGED b/fhem/CHANGED index ffc78d540..3d011a8b9 100644 --- a/fhem/CHANGED +++ b/fhem/CHANGED @@ -1,5 +1,7 @@ # Add changes at the top of the list. Keep it in ASCII, and 80-char wide. # Do not insert empty lines here, update check depends on it. + - bugfix: 52_I2C_HDC1008: "temperature" reading now works correctly with + event-min-interval - bugfix: 48_BlinkCamera: Corrected handling of prefered network attribute - change: 70_SolarEdgeAPI: allow smaller intervals for API queries - change: 66_EseraOneWire: switching to recommended firmware version 12029 diff --git a/fhem/FHEM/52_I2C_HDC1008.pm b/fhem/FHEM/52_I2C_HDC1008.pm index e83df4d5b..bab9c0642 100644 --- a/fhem/FHEM/52_I2C_HDC1008.pm +++ b/fhem/FHEM/52_I2C_HDC1008.pm @@ -203,8 +203,6 @@ sub I2C_HDC1008_GetTemp ($$) $temperature = sprintf( '%.' . AttrVal($hash->{NAME}, 'roundTemperatureDecimal', 1) . 'f', $temperature ); - - readingsSingleUpdate($hash, "temperature", $temperature, 0); } sub I2C_HDC1008_GetHum ($$)