Skip to content

Commit 879e680

Browse files
committed
Fix Wemo readout
1 parent 616d863 commit 879e680

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

hardware/relay/wemo_relay.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ def _set_hardware_value(self, state):
3333
return True
3434

3535
def _get_hardware_value(self):
36-
self.device.reconnect_with_device()
37-
data = self.device.get_state()
36+
# self.device.reconnect_with_device()
37+
data = self.device.get_state(True)
3838
if data is None:
3939
return None
4040

0 commit comments

Comments
 (0)