We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 994fb54 commit bfa28e1Copy full SHA for bfa28e1
frigidaire/__init__.py
@@ -203,10 +203,10 @@ def set_humidity(cls, humidity: int) -> List[Component]:
203
204
@classmethod
205
def set_temperature(cls, temperature: int) -> List[Component]:
206
- # This is a restriction set by Frigidaire
207
- if temperature < 60 or temperature > 90:
208
- raise FrigidaireException("Temperature must be between 60 and 90 degrees, inclusive")
209
-
+ # Note: Frigidaire sets limits for temperature which could cause this action to fail
+ # Temperature ranges are below, inclusive of the endpoints
+ # Fahrenheit: 60-90
+ # Celsius: 16-32
210
return [
211
Component(Setting.TEMPERATURE_REPRESENTATION, Unit.FAHRENHEIT),
212
Component(Setting.TARGET_TEMPERATURE_F, temperature),
0 commit comments