GrowSystem/main.py

13 lines
225 B
Python

## Only start grow system
from gs.growsystem import GrowSystem
from time import sleep
if __name__ == '__main__':
gs = GrowSystem()
while True:
print("Keep running in main.py")
sleep(5)