Docs: Add Bulleye fix (#367)
Also configuration file clarifications, and other minor updates. Co-authored-by: jordanruthe <31575189+jordanruthe@users.noreply.github.com>
This commit is contained in:
@@ -1,8 +1,6 @@
|
|||||||
# KlipperScreen
|
# KlipperScreen
|
||||||
|
|
||||||
KlipperScreen is touchscreen GUI for Klipper based 3D printers. KlipperScreen interfaces with [Klipper](https://github.com/kevinOConnor/klipper) via [Moonraker](https://github.com/arksine/moonraker).
|
KlipperScreen is a touchscreen GUI that interfaces with [Klipper](https://github.com/kevinOConnor/klipper) via [Moonraker](https://github.com/arksine/moonraker). It can switch between multiple printers to access them from a single location, and it doesn't even need to run on the same host, you can install it on another device and configure the IP address to access the printer.
|
||||||
|
|
||||||
Multiple printers update is here! Please check the configuration information for specifying several printers.
|
|
||||||
|
|
||||||
### Documentation
|
### Documentation
|
||||||
|
|
||||||
|
@@ -1,8 +1,9 @@
|
|||||||
# Configuration
|
# Configuration
|
||||||
|
|
||||||
Create a blank file in `~/klipper_config/KlipperScreen.conf`, if the file already exist then just edit it.
|
Usually you don't need to create a configuration file, but if you need to change something that is not changeable in the UI
|
||||||
|
create a blank file in `~/klipper_config/KlipperScreen.conf`, if the file already exist then just edit it.
|
||||||
|
|
||||||
Write in the file only the options that need to be changed.
|
Write in the file only the options that need to be changed, and restart KlipperScreen.
|
||||||
|
|
||||||
## Include files
|
## Include files
|
||||||
```
|
```
|
||||||
|
@@ -51,4 +51,7 @@ This script will install packages that are listed under manual install, create a
|
|||||||
If you need a custom location for the configuration file, you can add -c or --configfile to the systemd file and specify
|
If you need a custom location for the configuration file, you can add -c or --configfile to the systemd file and specify
|
||||||
the location of your configuration file.
|
the location of your configuration file.
|
||||||
|
|
||||||
At this point KlipperScreen should be working, check out the [hardware page](Hardware.md) if you still haven't installed the screen, or head to the [troubleshooting page](Troubleshooting.md) if you are having problems
|
If your screen needs additional software, proceed with the manufacturer instructions if they are provided
|
||||||
|
and check out the [hardware page](Hardware.md)
|
||||||
|
|
||||||
|
At this point KlipperScreen should be working, if it doesn't start then go to the [troubleshooting page](Troubleshooting.md)
|
||||||
|
@@ -45,4 +45,19 @@ Once you have saved that file, restart KlipperScreen and it should show up on yo
|
|||||||
|
|
||||||
#### Screen is all white or blank
|
#### Screen is all white or blank
|
||||||
|
|
||||||
Improperly installed screen, follow the manufacturer instructions on how to physically connect the screen and install the proper drivers.
|
Improperly installed screen, follow the manufacturer instructions on how to physically connect the screen and install
|
||||||
|
the proper drivers.
|
||||||
|
|
||||||
|
### Touch not working on debian Bullseye
|
||||||
|
|
||||||
|
Some dsi screens have issues where touch doesn't work with debian bullseye, the current fix
|
||||||
|
(at least until upstream is fixed) consist in editing `/boot/config.txt` and changing:
|
||||||
|
|
||||||
|
`dtoverlay=vc4-kms-v3d`
|
||||||
|
|
||||||
|
to:
|
||||||
|
|
||||||
|
`dtoverlay=vc4-fkms-v3d`
|
||||||
|
|
||||||
|
and reboot. That should make the touch work, if your screen is rotated 180 degrees, then you may need to adjust
|
||||||
|
[the touch rotation](Hardware.md) as described in the Hardware page.
|
||||||
|
@@ -11,11 +11,14 @@ A physical touchscreen is not strictly required, for example you may install a r
|
|||||||
### Sample Panels
|
### Sample Panels
|
||||||
|
|
||||||
Main Menu
|
Main Menu
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
Job Status
|
Job Status
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
|
[More](panels.md)
|
||||||
|
|
||||||
### Inspiration
|
### Inspiration
|
||||||
KlipperScreen was inspired by [OctoScreen](https://github.com/Z-Bolt/OctoScreen/) and the need for a touchscreen GUI that
|
KlipperScreen was inspired by [OctoScreen](https://github.com/Z-Bolt/OctoScreen/) and the need for a touchscreen GUI that
|
||||||
|
@@ -8,6 +8,7 @@
|
|||||||
|
|
||||||
### Bed Level
|
### Bed Level
|
||||||
type: bed_level
|
type: bed_level
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
The bed level panel has the ability to have preset locations from Klipper. Please see documentation on the following
|
The bed level panel has the ability to have preset locations from Klipper. Please see documentation on the following
|
||||||
@@ -24,64 +25,80 @@ panel.
|
|||||||
|
|
||||||
### Bed Mesh
|
### Bed Mesh
|
||||||
type: bed_mesh theme:material-dark
|
type: bed_mesh theme:material-dark
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
### Extrude
|
### Extrude
|
||||||
type: extrude theme:material-dark
|
type: extrude theme:material-dark
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
### Fan
|
### Fan
|
||||||
type: fan
|
type: fan
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
### Fine Tune
|
### Fine Tune
|
||||||
type: fine_tune theme:custom
|
type: fine_tune theme:custom
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
### Gcode Macros
|
### Gcode Macros
|
||||||
type: gcode_macros theme: material-darker
|
type: gcode_macros theme: material-darker
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
### Menu
|
### Menu
|
||||||
type: menu
|
type: menu
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
### Move
|
### Move
|
||||||
type: move
|
type: move
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
### Network
|
### Network
|
||||||
type: network
|
type: network
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
### Power
|
### Power
|
||||||
type: power
|
type: power
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
### Preheat
|
### Preheat
|
||||||
type: preheat
|
type: preheat
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
### Print
|
### Print
|
||||||
type: print
|
type: print
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
### Settings
|
### Settings
|
||||||
type: settings theme:colorized
|
type: settings theme:colorized
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
### System
|
### System
|
||||||
type: system
|
type: system
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
### Temperature
|
### Temperature
|
||||||
type: temperature theme:material-light
|
type: temperature theme:material-light
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
### Z Calibrate
|
### Z Calibrate
|
||||||
type: zcalibrate
|
type: zcalibrate
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
### Limits
|
### Limits
|
||||||
type: limits theme: material-dark
|
type: limits theme: material-dark
|
||||||
|
|
||||||

|

|
||||||
|
Reference in New Issue
Block a user