12 lines
269 B
Python
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() |