Fonctionnalités étendues de KlipperScreen
Méthode pour activer le curseur de la souris dans KlipperScreen
- Ouvrez
KlipperScreen.confdans la configuration de l'imprimante. Ce fichier est généré automatiquement après l'installation de KlipperScreen. S'il n'existe pas, créez-le vous-même.Loading... - Ajoutez le code suivant en haut de la configuration :
[main]
show_cursor: True
Loading...
- Sauvegardez et redémarrez.
Connexion à distance à un autre ordinateur hôte
- Ouvrez
KlipperScreen.confdans la configuration de l'imprimante. Ce fichier est généré automatiquement après l'installation de KlipperScreen. S'il n'existe pas, créez-le vous-même.Loading... - Ajoutez le code suivant en haut de la configuration.
- Vous pouvez modifier le nom de l'imprimante
VORON-300et l'adresse IP192.168.6.217de la machine à connecter. - Notez que le second
[printer KlipperScreen]est destiné à connecter une machine distante étendue. Vous pouvez utiliser cette configuration pour le débogage ou l'extinction.
Avis
- Assurez-vous d'être sur le même réseau local.
# 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...