KlipperScreen Extended Features
How to Enable the KlipperScreen Mouse Cursor
- Open the
KlipperScreen.conffile in the printer configuration. This file is automatically generated after installing KlipperScreen. If it does not exist, create it yourself.Loading... - Add the following code to the top of the configuration file.
[main]
show_cursor: True
Loading...
- Save and restart to apply.
Remotely Connect to Another Upper Computer
- Open the
KlipperScreen.conffile in the printer configuration. This file is automatically generated after installing KlipperScreen. If it does not exist, create it yourself.Loading... - Add the following code to the top of the configuration file.
- Modify the printer name
VORON-300and the IP address192.168.6.217to match the machine you want to connect to. - Note that the second
[printer KlipperScreen]is intended for connecting to a remotely extended machine. You can use this configuration for debugging or shutting it down.
Note
- Ensure that both machines are on the same local network.
# Define printer and name. Name is anything after the first printer word
[printer VORON-300]
# Define the moonraker host/port if different from 127.0.0.1 and 7125
moonraker_host: 192.168.6.217
# ports 443 and 7130 will use https/wss
moonraker_port: 7125
# Moonraker API key if this is not connecting from a trusted client IP
moonraker_api_key: False
# Define printer and name. Name is anything after the first printer word
[printer KlipperScreen]
# Define the moonraker host/port if different from 127.0.0.1 and 7125
moonraker_host: 127.0.0.1
# ports 443 and 7130 will use https/wss
moonraker_port: 7125
# Moonraker API key if this is not connecting from a trusted client IP
moonraker_api_key: False
Loading...