Skip to content

Commit

Permalink
sdp: fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Morg42 committed Jul 7, 2024
1 parent 3621301 commit f331c32
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/model/smartdeviceplugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -1153,14 +1153,14 @@ def _read_initial_values(self):
for cmd in self._commands_initial:
self.logger.debug(f'Sending initial command {cmd}')
self.send_command(cmd)
self._initial_value_read_done = True
self.logger.info('Initial read commands sent')
if self._triggers_initial:
self.logger.info('Starting initial read group triggers')
for grp in self._triggers_initial:
self.logger.debug(f'Triggering initial read group {grp}')
self.read_all_commands(grp)
self.logger.info('Initial read group triggers sent')
self._initial_value_read_done = True

def _read_cyclic_values(self):
"""
Expand Down

0 comments on commit f331c32

Please sign in to comment.