diff --git a/README.md b/README.md index 1ce7fb5..9683c98 100644 --- a/README.md +++ b/README.md @@ -35,6 +35,7 @@ Although I've made switching over to Klipper as easy as is possible, it can stil ## Before You Begin - Read this documentation *fully!* +- Make sure your printer is in good physical condition, because print and travel speeds will be *a lot faster* than they were before. Consider yourself warned. - Follow the steps in order. - If an error was reported at a step, do no proceed to the next step. - It is assumed that you are connected to your host Raspberry Pi (or other host device) via SSH, and that your printer motherboard is connected to the host via a data USB cable. Note that most of the micro USB cables that you find at home are *unlikely* to be data cables, and it's not possible to tell just by looking. @@ -227,6 +228,34 @@ Make the following changes according to your needs. A simple runout sensor can only detect a change in state. So, if you start a print without filament loaded, the printer will not know that there is no filament loaded. You should test your sensor by having filament loaded, starting a print, then cutting the filament. The expected behaviour is that the print will pause, and as long as you have beeping enabled, you will hear 3 annoying beeps. +##### What happens when I put in `M600`/colour change at a certain layer? + +1. The printer will beep 3 times (not annoyingly). +2. Printing will stop. +3. The printhead will park itself front center. +4. The hotend will turn off, but the bed will remain hot. + +##### What happens when I pause a print? + +Same behaviour as `M600`/colour change *except* there won't be any beeping. + +##### What happens when filament runouts out? + +*If* you have a working filament sensor, the same behaviour as `M600`/colour change will occur*except* the beeps will be fairly annoying. + +##### How do I resume a print after a colour change or filament runout? + +*Do no disable the stepper motors during this process!* + +The printhead is now parked front center waiting for you to insert filament. You will: + +1. Heat up the hotend to the desired temperature. + - Use your Klipper dashboard. +2. Purge (push) some filament through the nozzle. + - Use your Klipper dashboard, and extrude maybe 50mm (for a colour change you probably want to extrude more). + - OR, you can push some filament by hand *making sure to first disengage the extruder's spring loaded arm*. +3. Hit resume in your Klipper dashboard. + ## Useful Resources - [Everything Sovol SV06](https://github.com/bassamanator/everything-sovol-sv06) diff --git a/cfgs/misc-macros.cfg b/cfgs/misc-macros.cfg index 64ecf79..47225be 100644 --- a/cfgs/misc-macros.cfg +++ b/cfgs/misc-macros.cfg @@ -123,7 +123,7 @@ gcode: # Set safe speeds {% set maxVelocity = printer.configfile.settings.printer.max_velocity|default(200)|int %} - {% set maxVelocityAdjusted = (0.95 * maxVelocity * 60)|int %} + {% set maxVelocityAdjusted = (0.90 * maxVelocity * 60)|int %} ADJUST_FILAMENT_SENSOR_STATUS ENABLE=1