mirror of
				https://github.com/esphome/esphome.git
				synced 2025-10-30 22:53:59 +00:00 
			
		
		
		
	pylontech: fix voltage_low and voltage_high wrong unit (#6060)
Co-authored-by: だから <82636574+Dackara@users.noreply.github.com>
This commit is contained in:
		| @@ -59,14 +59,14 @@ TYPES: dict[str, cv.Schema] = { | ||||
|         device_class=DEVICE_CLASS_TEMPERATURE, | ||||
|     ), | ||||
|     CONF_VOLTAGE_LOW: sensor.sensor_schema( | ||||
|         unit_of_measurement=UNIT_CELSIUS, | ||||
|         accuracy_decimals=1, | ||||
|         device_class=DEVICE_CLASS_TEMPERATURE, | ||||
|         unit_of_measurement=UNIT_VOLT, | ||||
|         accuracy_decimals=3, | ||||
|         device_class=DEVICE_CLASS_VOLTAGE, | ||||
|     ), | ||||
|     CONF_VOLTAGE_HIGH: sensor.sensor_schema( | ||||
|         unit_of_measurement=UNIT_CELSIUS, | ||||
|         accuracy_decimals=1, | ||||
|         device_class=DEVICE_CLASS_TEMPERATURE, | ||||
|         unit_of_measurement=UNIT_VOLT, | ||||
|         accuracy_decimals=3, | ||||
|         device_class=DEVICE_CLASS_VOLTAGE, | ||||
|     ), | ||||
|     CONF_COULOMB: sensor.sensor_schema( | ||||
|         unit_of_measurement=UNIT_PERCENT, | ||||
|   | ||||
		Reference in New Issue
	
	Block a user