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:
parent
ae47cac064
commit
964ae7986f
@ -1,8 +1,6 @@
|
||||
# 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).
|
||||
|
||||
Multiple printers update is here! Please check the configuration information for specifying several printers.
|
||||
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.
|
||||
|
||||
### Documentation
|
||||
|
||||
|
@ -1,8 +1,9 @@
|
||||
# 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
|
||||
```
|
||||
|
@ -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
|
||||
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
|
||||
|
||||
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
|
||||
|
||||
Main Menu
|
||||
|
||||

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

|
||||
|
||||
[More](panels.md)
|
||||
|
||||
### Inspiration
|
||||
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
|
||||
type: bed_level
|
||||
|
||||

|
||||
|
||||
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
|
||||
type: bed_mesh theme:material-dark
|
||||
|
||||

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

|
||||
|
Loading…
x
Reference in New Issue
Block a user