mirror of
				https://github.com/esphome/esphome.git
				synced 2025-10-31 07:03:55 +00:00 
			
		
		
		
	fix tmp102 negative calculation (#6320)
This commit is contained in:
		| @@ -39,9 +39,6 @@ void TMP102Component::update() { | ||||
|     return; | ||||
|   } | ||||
|   raw_temperature = i2c::i2ctohs(raw_temperature); | ||||
|   if (raw_temperature & 0x8000) { | ||||
|     raw_temperature |= 0xF000; | ||||
|   } | ||||
|   raw_temperature = raw_temperature >> 4; | ||||
|   float temperature = raw_temperature * TMP102_CONVERSION_FACTOR; | ||||
|   ESP_LOGD(TAG, "Got Temperature=%.1f°C", temperature); | ||||
|   | ||||
		Reference in New Issue
	
	Block a user