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)
|
* [Main menu](#main-menu)
|
||||||
* [Job Status](#job-status)
|
* [Job Status](#job-status)
|
||||||
* [bed_level](#bed-level)
|
* [bed_level](#bed-level)
|
||||||
|
* [bed_mesh](#bed-mesh)
|
||||||
* [extrude](#extrude)
|
* [extrude](#extrude)
|
||||||
* [fan](#fan)
|
* [fan](#fan)
|
||||||
* [fine_tune](#finetune)
|
* [fine_tune](#finetune)
|
||||||
* [gcode_macros](#gcode-macros)
|
* [gcode_macros](#gcode-macros)
|
||||||
* [move](#move)
|
* [move](#move)
|
||||||
* [network](#network)
|
* [network](#network)
|
||||||
|
* [power](#power)
|
||||||
* [preheat](#preheat)
|
* [preheat](#preheat)
|
||||||
* [print](#print)
|
* [print](#print)
|
||||||
|
* [settings](#settings)
|
||||||
* [system](#system)
|
* [system](#system)
|
||||||
* [temperature](#temperature)
|
* [temperature](#temperature)
|
||||||
* [zcalibrate](#zcalibrate)
|
* [zcalibrate](#zcalibrate)
|
||||||
@ -25,7 +28,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
|
||||||
Klipper Sections:
|
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
|
for _Screws Calibrate_ will appear. This button runs the SCREWS_TILT_CALCULATE command and shows the results on the
|
||||||
panel.
|
panel.
|
||||||
|
|
||||||
|
### Bed Mesh
|
||||||
|
type: bed_mesh
|
||||||
|

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

|

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

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

|

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

|

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

|
||||||
|
|
||||||
### System
|
### System
|
||||||
type: 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
|