Repetier
About
- Username
- Repetier
- Joined
- Visits
- 2,088
- Last Active
- Roles
- Administrator
Comments
-
Merkwürdig, so was habe ich nie gesehen und die Bibliothek wird auch nicht fuur den Server benötigt, aber offenbar stört sich der installer daran. Versuch mal sudo apt update sudo apt --reinstall nstall libgdk-pixbuf-2.0-0 um das fragliche Paket ern…
-
Segmentation fault heist wegen falschem Zugriff oder ähnlichem abgestürzt. Am Anfang ist das image leer und sollte ihn starten. Oder hast du schon deine Datein zurück kopiert? Wenn es ein pi 1 ist kann er nicht funktionieren wenn es noch die origi…
-
Ok to make it easier here a full solution. In G-Codes->Event dependent->Run on Activation add this @func sendFWCommand cmd {{local.cmd}} @deleteMonitorCall RunForFirmware @monitorCall RunForFirmware "// action: send:(.*)" 0 sendFWCommand "…
-
Prefix is added with space separated, so use empty prefix and send complete command in MSG instead. But problem is still that responses do not get resend and thus executed even if it looks like a command. There is one exception //run_script:NameOfSc…
-
Wenn eine Cam nicht auswählbar ist, läuft der mjpg streamer für die cam nicht( mehr). Man kann versuchen die Webcams neu zu starten, aber wenn der streamer es nicht kann wird er sich vermutlich wieder schnell abschalten. Dann sollte man in /var/log/…
-
Ich denke nicht das da wirklich noch anlasslose Notizen reingehören. Man kann ja schon pro G-Code oder Pro Projekt Notizen hinterlegen. Allgemeine Notizen sind ja auch Benutzerabhängig, ist ja im allgemeinen ein Mehrbenutzersystem. Vielleicht mach i…
-
Kann man für Sonderprobleme machen, wie einige hier im Forum schon gezeigt haben. Insgesamt ist es aber eher umständlich da wir ja ohnehin bereits fast alle Betreibssysteme unterstützen und man ja die ganzen Geräte zu Docker weiterleiten muss, neue …
-
Actually if M412 is supported it should also send a // action: ... before going to busy which would be the better variant to look for.
-
When printer sends this it is not executing commands except emergency commands if enabled. So sending moves will not work. They get executed after the pause. Would M108 make it continue? If so you could add a parser for it and send there M108 @outO…
-
Our current image is based on debian buster and the kernel does not support pi 5. We are working on a new image based on bookworm which also supports pi 5. But changes in debian are quite big, so might take a week or two. You can install the packag…
-
No you are not the only one. Can be bad settings or hardware related or both. Please read our guide to troubleshoot and understand what is going on and possible fixes, https://www.repetier-server.com/knowledgebase/4012/
-
Ja genau das meine ich. Das ist der Wert der addiert wird.
-
> weil der Drucker nur USB Ausgänge hat und vom PC nicht erkannt wird. Sicher? Nicht nur Netwerkanschluß? Der Ender geht, weil wir da direkt mit dem Druckerboard über usb sprechen können, aber das mach beim Kobra Klipper und wir müssen entweder…
-
Am einfachsten gehst du nach jedem Düsenwechsel auf "Drucker einrichten" und gibst einen Temperaturoffset ein. Wenn im G-Code eine Temperatur dann gesetzt wird, wird der offset hinzuaddiert, so dass er dann zu deiner Düse passt. Das ist für genau di…
-
Das Problem ist, das auf dem Drucker klipper mit moonraker läuft. Wir unterstützen Klipper nativ also mit direktem Zugriff auf die Klipper Schnittstelle. Die ist normal aber nur intern erreichbar. moonraker greift so zum beispiel darauf zu. In Zukun…
-
Steht im Server wenn du da auf home gehst stehen unten wenn du es aufklappst alle Netzwerke mit IP. Wenn es der gleiche ist wie der wo der Host läuft ist es 127.0.0.1 also localhost. Wenn es auf einem anderen läuft must du die IP aus deinem Netzwerk…
-
Sorry, mainseil ist nur ein webscript. Wa sich meine war monnraker was mainsail ja auch benutzt. Idee ist wenn die moonraker api zugreifbar ist damit direkt verbinden zu können stadt mit klipper. Reduziert zwar einige Funktionen aber immer Mehr Druc…
-
Nein, wir wollen erst mainsail und bambu unterstützung hinzufügen.
-
Offset in STL is not relevant. You can not provide bed position in cureengine config in host. It uses the settings in Printer Settings and there you must define x min and y min and bed front and bed left with -100 if your center is 0 and size is 200.
-
Habe einen bestellt, mal sehen was sich machen lässt:-)
-
Yes for klipper this is a shortcut, but you should note that server does not see you did a homing in this case so shown status can diverge. On new release 1.4.14 it might not be that relevant since we now use the klipper api socket to get infos like…
-
If you mean filament used in history you can query the history data as our frontend does using this api function: https://prgdoc.repetier-server.com/v1/docs/index.html#/en/web-api/websocket/jobs?id=show-history-of-last-prints A per extruder filamen…
-
Yes it will get overwritten. Make a copy with second name in etc so it does not get overwritten RepetierServer-extra.xml should that be.
-
How repeatable is homing x and y regarding position? If this has some bigger tolerances in range of your shift it would come from homing. If you only use usb connection for a few seconds on linux (probably because hub/linux disconnected it for emi …
-
Sieht fast so aus. Wie alt ist das Image? Das aktuelle Image nutzt buster (lsb_release -a). In kürze will ich eins mit bookworm veröffentlichen, aber da hat sich viel geändert muss ich erst mal ausgiebig testen. Wobei ich es komisch finde das es nic…
-
Wir laden den GCode nicht hoch sondern interpretieren ihn selber. Dazu nutzen wir die normale Textversion. Ich muss mir mal die Spezifikation ansehen ob das integriert werden kann, aber bis dahin bitte den normalen text gcode nutzen.
-
WHo is omitting everything after @ host or PrusaSlicer? Which PrusaSlicer version? If it is PrusaSlicer doing this we can not anything against it - we include the official binaries. But will have a look into it.
-
Was ist mit Prusa Original Prusa i3 MK3 - ist das ein anderer Prusa Drucker am gerät. Auch wenn der Name falsch ist wäre er es wenn kein anderer dran hängt. Wenn ein anderer ist, funktioniert usb nicht oder das Gerät ist nicht an. Versuch mal andere…
-
No not extcommands.xml see https://www.repetier-server.com/startup-configuration/ for possible locations. Filename in database directory is RepetierServer.xml and if you do not have it just use that one in socket doc. As long as you only want to se…
-
Sending is quite easy from your script to server. Activate servers unix socket feature and just execute the function you want to trigger. See https://prgdoc.repetier-server.com/v1/docs/index.html#/en/web-api/unixsockets on how to send api commands.…