Merge branch 'master' into sv06-plus

This commit is contained in:
Bassam Husain
2023-11-22 19:09:45 -05:00
3 changed files with 12 additions and 6 deletions

View File

@@ -1,8 +1,14 @@
# Contribution Guidelines # Contribution Guidelines
When contributing, please ... When contributing, please:
- provide a clear and concise explanation of your pull request. - provide a clear and concise explanation of your pull request.
- try to make small changes, ie, make many small pull requests as opposed to a single large pull request. This allows me to check your work more quickly, thus merge more quickly. - try to make small changes, ie, make many small pull requests as opposed to a single large pull request.
- try to follow the patterns I've already established. - try to follow the patterns I've already established.
Contributions to `README.md` should do some or all of the following:
- add clarity
- reduce complexity for the user
- reduce verbosity
- fix errors
Thank you. Thank you.

View File

@@ -261,7 +261,7 @@ The printer will beep upon:
- Filament runout. - Filament runout.
- Filament change/`M600`. - Filament change/`M600`.
- Upon `PRINT_END`. - Upon `PRINT_END`.
- `MECHANICAL_GANTRY_CALIBRATION`/`G34` (beeping will occur even if beeping is disabled, as long as you have a speaker on your board). - `MECHANICAL_GANTRY_CALIBRATION`/`G34`.
Adjust behaviour according to your needs. Adjust behaviour according to your needs.

View File

@@ -72,16 +72,16 @@ gcode:
SET_TMC_CURRENT STEPPER=stepper_z1 CURRENT={my_current} ; drop current SET_TMC_CURRENT STEPPER=stepper_z1 CURRENT={my_current} ; drop current
{% endif %} {% endif %}
# BEEP I=1 CONDITIONAL_BEEP I=1
G4 P200 ; Probably not necessary, it is here just for sure G4 P200 ; Probably not necessary, it is here just for sure
SET_KINEMATIC_POSITION Z={z_max - 25} ; Trick printer into beleiving the gantry is 25mm lower than it is ; CHANGED SET_KINEMATIC_POSITION Z={z_max - 25} ; Trick printer into beleiving the gantry is 25mm lower than it is ; CHANGED
G1 Z{z_max} F{6 * 60} ; based on above figures, there will be 20mm worth of grinding ; CHANGED G1 Z{z_max} F{6 * 60} ; based on above figures, there will be 20mm worth of grinding ; CHANGED
# BEEP I=2 CONDITIONAL_BEEP I=2
G4 P10000 ; wait 10 seconds G4 P10000 ; wait 10 seconds
G1 Z{z_max -6} F{6 * 60} ; move 4mm down G1 Z{z_max -6} F{6 * 60} ; move 4mm down
# BEEP I=3 CONDITIONAL_BEEP I=3
G4 P200 ; same as the first one G4 P200 ; same as the first one
SET_TMC_CURRENT STEPPER=stepper_z CURRENT={oldcurrent} HOLDCURRENT={oldhold} SET_TMC_CURRENT STEPPER=stepper_z CURRENT={oldcurrent} HOLDCURRENT={oldhold}