-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
43 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
nav: | ||
- driversVoltage.md | ||
- buzzMoving.md | ||
- sdcardProtection.md |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
# Решение скрежета при перемещение | ||
|
||
Если у вас при перемещение (преимущественно диагональном) головы вы слышите примерно такой звук: | ||
|
||
[Пример 1](https://t.me/Reborn_3D/1/167654) | ||
|
||
[Пример 2](https://t.me/Reborn_3D/196611/251289) | ||
|
||
То у вас с большой вероятностью так называемый "Рев кабана" | ||
|
||
## Решение | ||
|
||
Решение показано на плате `MKS Robin Nano v1.3` и драйверах `MKS TMC2225` | ||
|
||
??? Драйвера | ||
![Драйвера](image/driverMicrostep.jpg) | ||
|
||
1) Необходимо убрать перемычку под драйверами `X` и `Y` переключив дробление шагов с `32` на `16`. | ||
|
||
=== "Шаг 1" | ||
![Плата](image/board.jpg) | ||
|
||
=== "Шаг 2" | ||
![Перемычка](image/removeJumper.jpg) | ||
|
||
2) Уменьшить в прошивке микрошаги для `X` и `Y` так же в двое. | ||
|
||
===+ "Klipper" | ||
``` title="printer.cfg" | ||
[stepper_x] | ||
microsteps: 16 | ||
``` | ||
``` title="printer.cfg" | ||
[stepper_y] | ||
microsteps: 16 | ||
``` | ||
|
||
=== "Marlin" | ||
Найти раздел где изменяются шаги. | ||
|
||
По умолчанию на `X` и `Y` будет стоять `160` нужно изменить на `80`. | ||
|
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.