Skip to main content

KlipperScreen Extended Features

Method to Enable the Mouse Cursor in KlipperScreen

  • Open KlipperScreen.conf in the printer configuration. This file is automatically generated after KlipperScreen is installed. If it does not exist, please create it yourself.
    Loading...
  • Add the following code at the very top of the configuration:
    [main]
    show_cursor: True
    Loading...
  • Save the file and restart.

Remotely Connect to Another Host Machine

  • Open KlipperScreen.conf in the printer configuration. This file is automatically generated after KlipperScreen is installed. If it does not exist, please create it yourself.

    Loading...
  • Add the following code at the very top of the configuration.

  • You can modify the printer name VORON-300 and the IP address 192.168.6.217 to match the machine you want to connect to.

  • Note: The second [printer KlipperScreen] is for connecting to the remote extended machine, which can be used for debugging or shutting down the machine via this configuration.

    Important Notes
    • Ensure both devices 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...