File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -23,4 +23,5 @@ def process_woblindtilt(
2323 "inMotion" : _in_motion ,
2424 "tilt" : (100 - _tilt ) if reverse else _tilt ,
2525 "lightLevel" : _light_level ,
26+ "sequence_number" : device_data [0 ]
2627 }
Original file line number Diff line number Diff line change 44import logging
55from typing import Any
66
7- from switchbot .devices .device import REQ_HEADER , update_after_operation
7+ from switchbot .devices .device import REQ_HEADER , update_after_operation , SwitchbotSequenceDevice
88
99from .curtain import CURTAIN_EXT_SUM_KEY , SwitchbotCurtain
1010
2626]
2727
2828
29- class SwitchbotBlindTilt (SwitchbotCurtain ):
29+ class SwitchbotBlindTilt (SwitchbotCurtain , SwitchbotSequenceDevice ):
3030 """Representation of a Switchbot Blind Tilt."""
3131
3232 # The position of the blind is saved returned with 0 = closed down, 50 = open and 100 = closed up.
You can’t perform that action at this time.
0 commit comments