Skip to content

Commit

Permalink
Merge pull request #173 from Olen/negative_min
Browse files Browse the repository at this point in the history
Negative minimum temperature
  • Loading branch information
Olen committed Jun 22, 2024
2 parents 98d3348 + 4d110a3 commit eea6bc8
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 eea6bc8

Please sign in to comment.