Update Chamber Temperature Control (#2542)

* 10-25

Add TPU-95A HF

* 1030

Adding Introduction of Chamber Temperature Control Macros(M191) to Notes
This commit is contained in:
Hukete 2023-10-30 19:56:56 +08:00 committed by GitHub
parent 7e91d68493
commit 95dc4b7c6d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
9 changed files with 10 additions and 9 deletions

View file

@ -112,5 +112,6 @@
"gcode_label_objects": "0",
"internal_bridge_speed": "50",
"internal_solid_infill_pattern": "zig-zag",
"initial_layer_travel_speed": "50%"
"initial_layer_travel_speed": "50%",
"notes": "If you want to use Orca's chamber temperature control feature, check that printer.cfg has added the following M191 macro.\nTo add it: go to Fluidd web interface--configuration, copy the following code to the bottom of the printer.cfg document, SAVE&RESATART \n\n[gcode_macro M191]\ngcode:\n #Parameters\n {% set s = params.S|float %}\n \n M141 {% for p in params %}{'%s%s' % (p, params[p])}{% endfor %} ; Set hotend temp\n {% if s != 0 %}\n TEMPERATURE_WAIT SENSOR=\"heater_generic hot\" MINIMUM={s} MAXIMUM={s+1} ; Wait for hotend temp (within 1 degree)\n {% endif %}"
}