Closedown

This commit is contained in:
gac-x04sa
2018-09-26 11:52:32 +02:00
parent d55ef623bc
commit 2fdc8f07c5

View File

@@ -1,3 +1,16 @@
###################################################################################################
# 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()