You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: printer_mods/README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -166,7 +166,7 @@ Printer mods for Voron 3D printers
166
166
| golas |[V0.1 Extended tophat hinge](golas/v0-extended-tophat-hinge)| Extended tophat for v0.1 with hinges (integrated or screwed ones). | V0.2 | 2024-01-08T16:38:25+00:00 |
167
167
||[V0.1 Trident skirt remix with...](golas/v0-trident-skirt-mix)| Trident style v0.1 skirt mix with 12864 Mini Lcd on front or plain... | V0.2 | 2024-01-08T16:38:25+00:00 |
168
168
| GSL12 |[Pocketwatch Nema 17](GSL12/pocketwatch_nema17)| Extruder like Pocketwatch, but with Nema17 instead of Nema14. Maybe... | V0 | 2024-01-21T20:17:15+00:00 |
||[Voron0.2 Rear Keystone Skirt](hartk1213/Voron0.2_Rear_Keystone_Skirt)| Added keystone slot on rear skirt for V0.2 | V0.2 | 2024-01-08T16:38:25+00:00 |
171
171
||[Voron0 C14Inlet](hartk1213/Voron0_C14Inlet)| Added a new Power inlet that uses a Fused C14 plug and switch that... | V0.1 | 2024-01-08T16:38:25+00:00 |
172
172
||[Voron0 deck panel](hartk1213/Voron0_deck_panel_with_logo_and_VORON0)| Used @Kruppes blank deck panel to add the logo as well as the name... | V0.1 | 2024-01-08T16:38:25+00:00 |
In the terminal find the kernel version and whether your are on a 32bit or 64bit system and cd to the corresponding file directory
65
+
in this example the version is 6.1.21 and its a 64bit system
66
+
67
+
command
68
+
```
69
+
uname -m -r
70
+
```
71
+
72
+
teminal output
73
+
```console
74
+
pi@mainsailos:~/Waveshare-DSI-LCD $ uname -m -r
75
+
6.1.21-v8+ aarch64
76
+
```
77
+
78
+
## Step 3
79
+
based on the result of the previous command, you want to step into that directory that corresponds with the version on your system. in this example the version is `6.1.21`
80
+
if you list out the directories using the `ls` command you can see if your version is there
81
+
82
+
command
83
+
```
84
+
cd 6.1.21/64
85
+
```
86
+
87
+
terminal output
88
+
```console
89
+
pi@mainsailos:~/Waveshare-DSI-LCD $ ls
90
+
5.10.103 5.15.84 6.1.63 readme.txt
91
+
5.10.92 6.1.0 6.1.73
92
+
5.15.61 6.1.21 6.6.20
93
+
5.15.76 6.1.58 Backlight
94
+
pi@mainsailos:~/Waveshare-DSI-LCD $ cd 6.1.21/64
95
+
pi@mainsailos:~/Waveshare-DSI-LCD/6.1.21/64 $
96
+
```
97
+
98
+
## Step 4
99
+
once you have entered that directory, it is time to install those drivers. There is a script in that folder for you to run which is done with this command , you may need to enter your password here as well
After that file has been successfully downloaded now you need to edit the /boot/firmware/config.txt file to tell the pi which orientation to use the display in (i.e portrait, landscape etc..).
152
+
153
+
154
+
command
155
+
```
156
+
sudo nano /boot/firmware/config.txt
157
+
```
158
+
To do this scroll all the way to the bottom of the file and replace
once you have rebooted the display should look something like this when the pi is booting up, it will be rotated in portrait mode but klipper screen once installed will be the correct orientation
Now you should just be able to install klipper screen as usual following the instructions [here](https://klipperscreen.readthedocs.io/en/latest/Installation/)
24
185
25
-
if you find that the drivers that you need are not included in the waveshare repo, they removed older versions but i have zipped and uploaded those [here](Software) along with the old instructions from waveshare
26
186
27
-
After the drivers are installed run the following command to open up the config.txt for the raspberry pi
then while still ssh into the pi you will need to place [this](Software/90-monitor.conf) file in the following directory, you may have to create that directory if it is not already created
43
-
44
-
/usr/share/X11/xorg.conf.d/
45
-
46
-
now you can proceed with installing klipperscreen as normal i typically use [kiauh](https://github.com/th33xitus/kiauh) to do that as it makes it that much easier
0 commit comments