mirror of
				https://github.com/esphome/esphome.git
				synced 2025-10-30 22:53:59 +00:00 
			
		
		
		
	[bmp085] Fix error in read of pressure (#8359)
This commit is contained in:
		| @@ -95,7 +95,7 @@ void BMP085Component::read_pressure_() { | ||||
|     return; | ||||
|   } | ||||
|  | ||||
|   uint32_t value = (uint32_t(buffer[0]) << 16) | (uint32_t(buffer[1]) << 8) | uint32_t(buffer[0]); | ||||
|   uint32_t value = (uint32_t(buffer[0]) << 16) | (uint32_t(buffer[1]) << 8) | uint32_t(buffer[2]); | ||||
|   if ((value >> 5) == 0) { | ||||
|     ESP_LOGW(TAG, "Invalid pressure!"); | ||||
|     this->status_set_warning(); | ||||
|   | ||||
		Reference in New Issue
	
	Block a user