Files
x04sa-es3/script/local.py
gac-x04sa 5f5d5f8399 Startup
2018-10-12 09:24:45 +02:00

17 lines
503 B
Python

###################################################################################################
# Deployment specific global definitions - executed after startup.py
###################################################################################################
class MyInterlock1 (Interlock):
def __init__(self):
Interlock.__init__(self, (alpha, gamma))
def check(self, (a, g)):
if a>=g:
return False
return True
#interlock1 = MyInterlock1()