TREx/test_scripts/led_test.py
ploedige 5197c767b0 indication_driver
asyncio --> threading
2023-01-19 04:46:43 +00:00

12 lines
269 B
Python

from time import sleep
import sys
sys.path.append('..')
from TREx.indication_driver import IndicationDriver
indication_driver = IndicationDriver()
indication_driver.indicate("CAN")
sleep(5)
indication_driver.indicate("INCOMBUSTIBLE")
sleep(5)
indication_driver.stop()