Update Spi.py #3

Merged
Kola50011 merged 1 commit from bugfix/change-health-check-times into master 2022-02-14 15:18:00 +01:00

View file

@ -209,9 +209,9 @@ class Spi(object):
@staticmethod
def health_check_loop():
while SPI_HEALTH:
if last_spi_call + 0.75 < time.time():
if last_spi_call + 0.5 < time.time():
Spi.health_check()
time.sleep(0.5)
time.sleep(0.1)
@staticmethod
def get_version():