-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
PR #9 - Adding documentation for commonly used Voron terminal commands
- Loading branch information
Showing
2 changed files
with
57 additions
and
0 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,57 @@ | ||
--- | ||
title: Voron Commands | ||
layout: default | ||
parent: Maintenance Resources | ||
nav_order: 2 | ||
--- | ||
|
||
# Voron Maintenance Commands | ||
|
||
This document provides a list of commonly used commands for maintaining and troubleshooting Voron 3D printers. | ||
|
||
## General Commands | ||
|
||
- **FIRMWARE_RESTART** | ||
Use this command if any updates are made to the printer configuration file. | ||
1. Save the configuration file. | ||
2. Restart Klipper by typing: | ||
`FIRMWARE_RESTART` | ||
|
||
- **Restart Klipper** | ||
If you need to restart Klipper, click on: | ||
`restart Klipper` | ||
<p align="center"> | ||
<img src="../attachments/restart.jpg" width="275" height="197" alt="Klipper"></p> | ||
|
||
|
||
- **Check Printer Status** | ||
Check the current status of the printer with: | ||
`status` | ||
|
||
## Movement Commands | ||
|
||
- **Home All Axes** | ||
Home the printer's axes using the following command: | ||
`G28` | ||
|
||
- **Move Z-Axis** | ||
Move the Z-axis to a specific height: | ||
`G0 Z10` | ||
|
||
- **Move All Axes** | ||
Move the X, Y, and Z axes to specific positions: | ||
`G0 X175 Y175 Z20` | ||
|
||
- **Set Movement Speed** | ||
Set the movement speed with the following command: | ||
`F 5000` | ||
|
||
## Additional Commands | ||
|
||
- **Turn On Case Lights** | ||
Turn the case lights on by typing: | ||
`caselights_on` | ||
|
||
- **Bed Leveling** | ||
Level the bed using this command: | ||
`QUAD_GANTRY_LEVEL` |