control_485_relays/run.py
2024-04-14 21:16:13 +08:00

8 lines
138 B
Python

from app import control_relays
import time
if __name__ == '__main__':
while True:
control_relays.run()
time.sleep(1)