This commit is contained in:
stten7 2025-03-18 17:53:37 +01:00
parent 5f41c97410
commit 29a3248386
2 changed files with 5 additions and 4 deletions

View File

@ -96,10 +96,10 @@ filling_time: 15
settling_time: 10
settling_pressure_min_percent: 5
settling_pressure_max_percent: 5
test_pressure: 5000
test_pressure: 5900
test_time: 10
test_pressure_qpos: 8
test_pressure_qneg: 12
test_pressure_qpos: 4
test_pressure_qneg: 7
test_pressure_tt_qpos: 1 # Q+ Upper test leak limit (tube-tube) (positive mbar)
test_pressure_tt_qneg: 5 # Q- Lower test leak limit (tube-tube) (negative mbar)
flush_time: 1

View File

@ -302,7 +302,8 @@ class TecnaMarpossProvasetT3(ModbusComponent):
recipe_barcode = f"j{recipe.part_number}"[:16].encode("ascii")
recipe_barcode += b"\x00" * (24 - len(recipe_barcode))
test_flags = 0b0110100001010000 if (step.spec.get("autotest", False) in ["ko_check"]) else 0b0110000001010000
pid_mode_text = step.spec["pid_mod_config"] # Get the selected text from the combobox
pid_mode_text = "AUTO"
#pid_mode_text = step.spec["pid_mod_config"] # Get the selected text from the combobox
pid_mode_value = { # Mapping of text to numeric values
"AUTO": 5,
"FAST": 0,