Skip to content

Commit

Permalink
Negative minimum temperature
Browse files Browse the repository at this point in the history
  • Loading branch information
Olen committed Jun 22, 2024
1 parent 98d3348 commit 4d110a3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions custom_components/plant/plant_thresholds.py
Original file line number Diff line number Diff line change
Expand Up @@ -327,8 +327,8 @@ def __init__(
self._attr_unique_id = f"{config.entry_id}-min-temperature"
super().__init__(hass, config, plantdevice)
self._attr_native_unit_of_measurement = self._hass.config.units.temperature_unit
self._attr_native_max_value = 100
self._attr_native_min_value = 0
self._attr_native_max_value = 50
self._attr_native_min_value = -50
self._attr_native_step = 1

@property
Expand Down

0 comments on commit 4d110a3

Please sign in to comment.