|
@@ -1965,15 +1965,15 @@ def counter_dmx(COUNTER,dataA):
|
|
|
count["GREEN"] = dataA[cDMX+7]
|
|
|
count["BLUE"] = dataA[cDMX+8]
|
|
|
|
|
|
- if count["CONTROL"] >= 10 and count["CONTROL"] < 20:
|
|
|
+ if count["CONTROL"] >= 10 and count["CONTROL"] < 20: # RESET COUNTER
|
|
|
count["_RUN"] = 0
|
|
|
count["_pause"] = 0
|
|
|
count["_time"] = time.time()
|
|
|
count["_start"] = int(count["SEC"])
|
|
|
count["_SEC"] = int(count["_start"])
|
|
|
- if count["CONTROL"] >= 20 and count["CONTROL"] < 30:
|
|
|
+ if count["CONTROL"] >= 20 and count["CONTROL"] < 30: # PAUSE COUNTER
|
|
|
count["_RUN"] = 0
|
|
|
- if count["CONTROL"] >= 30 and count["CONTROL"] < 40:
|
|
|
+ if count["CONTROL"] >= 30 and count["CONTROL"] < 40: # PLAY COUNTER
|
|
|
count["_RUN"] = 1
|
|
|
|
|
|
|