This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [tmc2209 stepper_x] | |
| stealthchop_threshold: 0 # <-- set this to 0 (or 13 if you don't want stealth on for faster z movement) | |
| [prtouch_v2] | |
| shake_range: 0.25 # <-- add this (normally is 0.5, I don't recommend going any lower than 0.25) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # klippy/extras/fan_feedback.py | |
| # If you are using a custom mcu backplate motherboard fan (using the free fan port (PA0) on the motherboard)... | |
| # ...and you want the "motherboard fan error" to go away | |
| # Replace the `_handle_result_fan_check1` function with the code below: | |
| def _handle_result_fan_check1(self, params): | |
| self.cx_fan_status = { | |
| "fan0_speed": self.cx_fan_status.get("fan0_speed", 0), | |
| "fan1_speed": 3000, |