docs: Update panel images
BIN
docs/img/bed_level.png
Normal file
After Width: | Height: | Size: 102 KiB |
BIN
docs/img/bed_mesh.png
Normal file
After Width: | Height: | Size: 114 KiB |
Before Width: | Height: | Size: 86 KiB |
Before Width: | Height: | Size: 86 KiB After Width: | Height: | Size: 104 KiB |
BIN
docs/img/fan.png
Before Width: | Height: | Size: 45 KiB After Width: | Height: | Size: 62 KiB |
Before Width: | Height: | Size: 131 KiB After Width: | Height: | Size: 120 KiB |
Before Width: | Height: | Size: 41 KiB After Width: | Height: | Size: 107 KiB |
Before Width: | Height: | Size: 273 KiB After Width: | Height: | Size: 244 KiB |
Before Width: | Height: | Size: 79 KiB After Width: | Height: | Size: 86 KiB |
Before Width: | Height: | Size: 67 KiB After Width: | Height: | Size: 113 KiB |
Before Width: | Height: | Size: 93 KiB After Width: | Height: | Size: 106 KiB |
Before Width: | Height: | Size: 34 KiB After Width: | Height: | Size: 33 KiB |
BIN
docs/img/power.png
Normal file
After Width: | Height: | Size: 61 KiB |
Before Width: | Height: | Size: 62 KiB After Width: | Height: | Size: 77 KiB |
Before Width: | Height: | Size: 267 KiB After Width: | Height: | Size: 226 KiB |
BIN
docs/img/settings.png
Normal file
After Width: | Height: | Size: 130 KiB |
Before Width: | Height: | Size: 78 KiB After Width: | Height: | Size: 81 KiB |
Before Width: | Height: | Size: 96 KiB After Width: | Height: | Size: 115 KiB |
Before Width: | Height: | Size: 86 KiB After Width: | Height: | Size: 84 KiB |
@ -4,14 +4,17 @@
|
||||
* [Main menu](#main-menu)
|
||||
* [Job Status](#job-status)
|
||||
* [bed_level](#bed-level)
|
||||
* [bed_mesh](#bed-mesh)
|
||||
* [extrude](#extrude)
|
||||
* [fan](#fan)
|
||||
* [fine_tune](#finetune)
|
||||
* [gcode_macros](#gcode-macros)
|
||||
* [move](#move)
|
||||
* [network](#network)
|
||||
* [power](#power)
|
||||
* [preheat](#preheat)
|
||||
* [print](#print)
|
||||
* [settings](#settings)
|
||||
* [system](#system)
|
||||
* [temperature](#temperature)
|
||||
* [zcalibrate](#zcalibrate)
|
||||
@ -25,7 +28,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
|
||||
Klipper Sections:
|
||||
@ -39,6 +42,9 @@ This panel will favor screws_tilt_adjust over the bed_screws section. If screws_
|
||||
for _Screws Calibrate_ will appear. This button runs the SCREWS_TILT_CALCULATE command and shows the results on the
|
||||
panel.
|
||||
|
||||
### Bed Mesh
|
||||
type: bed_mesh
|
||||

|
||||
|
||||
### Extrude
|
||||
type: extrude
|
||||
@ -68,6 +74,10 @@ type: move
|
||||
type: network
|
||||

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

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

|
||||
@ -76,6 +86,10 @@ type: preheat
|
||||
type: print
|
||||

|
||||
|
||||
### Settings
|
||||
type: settings
|
||||

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

|
||||
|
13
scripts/crop_images.sh
Normal file
@ -0,0 +1,13 @@
|
||||
#!/bin/bash
|
||||
|
||||
SCRIPTPATH="$( cd "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P )"
|
||||
IMGDIR=$SCRIPTPATH/../docs/img
|
||||
|
||||
for file in $IMGDIR/*
|
||||
do
|
||||
res=$(identify $file | cut -d ' ' -f 3)
|
||||
if [ "$res" != "1532x898" ]; then
|
||||
echo "Converting $file"
|
||||
convert $file -crop 1532x898+2+48 $file
|
||||
fi
|
||||
done
|