Skip to content

Commit a6af803

Browse files
committed
Fixes #1
1 parent 5801c30 commit a6af803

File tree

1 file changed

+1
-1
lines changed
  • custom_components/easycontrols

1 file changed

+1
-1
lines changed

custom_components/easycontrols/fan.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ async def async_turn_on(self, speed=None, **kwargs):
105105
speed = SPEED_RATED_VENTILATION
106106

107107
self._controller.set_variable(
108-
VARIABLE_FAN_STAGE, self.speed_list.index(speed), "{:d}"
108+
VARIABLE_FAN_STAGE, self.speed_list.index(speed) + 1, "{:d}"
109109
)
110110

111111
async def async_turn_off(self, **kwargs):

0 commit comments

Comments
 (0)