Skip to content
Snippets Groups Projects
Commit 7545bd8e authored by Martin Teichmann's avatar Martin Teichmann Committed by Martin Teichmann
Browse files

add support for a Leybold TurboVac

parent c30eb1c0
No related branches found
No related tags found
No related merge requests found
......@@ -123,3 +123,17 @@ class EL7041(EBPFTerminal):
status = ProcessDesc(0x6000, 1, "H")
low_switch = ProcessDesc(0x6010, 0xc)
high_switch = ProcessDesc(0x6010, 0xd)
class TurboVac(EBPFTerminal):
compatibility = {(0x723, 0xb5)}
pump_on = ProcessDesc(0x20D3, 0, 0)
stand_by = ProcessDesc(0x20D3, 0, 5)
reset = ProcessDesc(0x20D3, 0, 7)
error_status = ProcessDesc(0x20CA, 0)
speed_status = ProcessDesc(0x20CB, 0)
pump_is_on = ProcessDesc(0x20CC, 0, 0)
pump_warning = ProcessDesc(0x20CC, 0, 2)
pump_alarm = ProcessDesc(0x20CC, 0, 3)
speed = ProcessDesc(0x20CD, 0, "H")
current = ProcessDesc(0x20D1, 0, "H")
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment