fixes in convergence, mercury, phytron, triton

This commit is contained in:
2022-06-01 09:21:47 +02:00
parent 3563a0db16
commit 68e2e06905
4 changed files with 18 additions and 15 deletions

View File

@ -32,7 +32,7 @@ open_close = Mapped(CLOSE=False, OPEN=True)
actions_map = Mapped(NONE=actions.none, COND=actions.condense, COLL=actions.collect)
class Action(MercuryChannel):
class Action(MercuryChannel, Writable):
channel_type = 'ACTN'
value = Parameter('running action', EnumType(actions))
target = Parameter('valve target', EnumType(none=0, condense=1, collect=3), readonly=False)