Merge remote-tracking branch 'origin/master'
# Conflicts: # src/ui/recipe_selection/recipe_selection.py
|
Before Width: | Height: | Size: 193 KiB After Width: | Height: | Size: 153 KiB |
|
Before Width: | Height: | Size: 197 KiB After Width: | Height: | Size: 141 KiB |
|
Before Width: | Height: | Size: 268 KiB After Width: | Height: | Size: 255 KiB |
|
Before Width: | Height: | Size: 268 KiB After Width: | Height: | Size: 255 KiB |
|
|
@ -199,7 +199,7 @@ test_time: 10
|
|||
test_pressure_qneg: 5
|
||||
test_pressure: 9000
|
||||
test_pressure_qpos: 5
|
||||
flush_time: 0
|
||||
flush_time: 3
|
||||
flush_pressure: 0
|
||||
pid_mod_config: 5
|
||||
|
||||
|
|
|
|||
|
|
@ -10,10 +10,10 @@ extra_label_printer: present
|
|||
remote_api: absent
|
||||
tecna_t3: present
|
||||
digital_io: present
|
||||
digital_io_flush_blow: present
|
||||
#digital_io_flush_blow: present
|
||||
barcode_recipe_selection: present
|
||||
enforce_piece_removal: yes
|
||||
external_flush_blow: present # EXTERNAL BOX CONTROLLING MULTI-CHANNEL TEST (IF PRESENT), BLOW-CLEANING AND EXTERNAL FLUSH
|
||||
#external_flush_blow: present # EXTERNAL BOX CONTROLLING MULTI-CHANNEL TEST (IF PRESENT), BLOW-CLEANING AND EXTERNAL FLUSH
|
||||
show_instructions: yes
|
||||
|
||||
[tecna_t3]
|
||||
|
|
@ -38,7 +38,7 @@ printer: xlp504
|
|||
[digital_io]
|
||||
id: USB-5862,BID#0
|
||||
[digital_io_flush_blow]
|
||||
id: USB-5860,BID#0
|
||||
id: USB-5860,BID#1
|
||||
# OUTPUT MAP FOR EXTERNAL FLUSH/BLOW UNIT
|
||||
blow_on: 0 # INPUT VALVE TO SERVICE AIR
|
||||
flush_on: 1 # OUTPUT VALVE TO DIRT COLLECTOR
|
||||
|
|
@ -88,6 +88,8 @@ pressione_di_test_delta_massimo_2: 200
|
|||
tempo_svuotamento_2: 1
|
||||
pressione_svuotamento_2: 100
|
||||
|
||||
tester_discharge_enable: yes
|
||||
|
||||
stampa_etichetta_abilitata: x
|
||||
modello_etichetta: ETA30x16_203dpi.prn
|
||||
descrizione: inserire descrizione ricetta
|
||||
|
|
@ -100,10 +102,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: 5
|
||||
test_pressure_qneg: 17
|
||||
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
|
||||
|
|
|
|||
|
|
@ -371,7 +371,6 @@ class Recipe_Selection(Widget):
|
|||
"ricetta_visione",
|
||||
"stampa_etichetta_abilitata",
|
||||
print_template_field,
|
||||
"etichette_supplementari"
|
||||
]
|
||||
for recipe in list(Recipes.select()):
|
||||
steps = recipe.get_steps_map()
|
||||
|
|
@ -422,7 +421,6 @@ class Recipe_Selection(Widget):
|
|||
"ricetta_visione": steps["vision"].spec["recipe"],
|
||||
"stampa_etichetta_abilitata": "x" if recipe.spec["print"] else "",
|
||||
print_template_field: steps["print"].spec["template"],
|
||||
"etichette_supplementari": steps["print"].spec["extra_label"]
|
||||
}
|
||||
data.append(exportable)
|
||||
if len(data):
|
||||
|
|
|
|||