Added missing homed state

pull/920/head
Andrew Koenig 2024-10-12 09:26:58 -05:00
rodzic 0f7165e01d
commit 41b54bb1aa
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -298,7 +298,7 @@ class Rotator(object):
_telem_age = time.time() - _telem_time
# If the telemetry is older than our homing delay, move to our home position.
if _telem_age > self.rotator_homing_delay * 60.0:
if _telem_age > self.rotator_homing_delay * 60.0 and not self.rotator_homed:
self.home_rotator()
else: