Repetier
About
- Username
- Repetier
- Joined
- Visits
- 2,088
- Last Active
- Roles
- Administrator
Comments
-
All printers stop same time or do they all stop at same layer? Activate logging and see what is in the log when it happens, might give some indication.
-
Is the ip still reachable when printer is powered down? Maybe because it is on a always powered on 5v line from power source? On which OS is server running? Might also be that connection does not timeout for some reasons, also normally if the backe…
-
If it was the slicers start g-code it is in the slicer profile stored. The host start g-code is in windows registry so not accessible if you only access hard drive (or maybe with special software).
-
No. First one more bug release then I think I can continue with slicer/filament management. But no date.
-
By default they send firmware g-code if firmware supports it. You can change the executed code in Printer Configuraion->G-Codes->Button Commands to do what ever you want on click. For heated chamber we send M141 Sxxx to set temperature. This …
-
Sorry, I was wrong. The bug in deed affects time and layer as well as they are set in same function that did not get executed due to the bug. Regular gui uses different solution that was not affected by this.
-
Ja dem neuen Displaytreiber sind einige config einträge egal, die werden nur in der legacy Treiberlösung genutzt. Siehe https://www.repetier-server.com/download-images/ Rotating Display da haben wir die Lösungen beschrieben.
-
Soon if we don't get a bigger issue. Need to recheck all changes and some testing.
-
Die vorschubgeschwindigkeit steht in der MItte. Eine ist zu schnell zum Drucken. Die ist zum befüllen von bowden bis man am Druckkopf ankommt. Die langsame ist zum etxrudieren:-)
-
Ok, I already found the problem - was added with the no queue option having a logic error.
-
> One thing that is odd - the pause via GCode puts the hot end to the right of the x-axis and via Repetier its going to the Left side. Not strange. Our script "Run on pause" is independent. If you set X180 insted of X0 it would also go to right …
-
It's not the only thing you need to reset. On our pi image ther eis a script /usr/local/Repetier-Setup/bin/prepareSnapshot that does cleanup for creating our images. Important part for server configs (after stopping sever) rm /var/lib/Repetier-Serve…
-
Sieht aus als ob du den server nutzt nicht host, richtig? Weil das der host thread ist und der kein @moveRel kann. Die gesendeten Befehle sind erst mal richtig. Stell erst mal sicher das du nicht dry run aktiviert hast, weil dann soll er auch nicht…
-
For @pause there the move command is in printer settings->g-codes->event dependent->run on pause. A mini should be able to reach Y 180 and I guess that is what move you will see there. Likely same move in M601 inside prusa as it will also m…
-
Thats a bug in server causing this. Will be fixed with next Repetier-Server release. This has no effect on printing just cosmetically as it shows no progress bar, but time still is working.
-
Repetier-Server Monitor has such a function. It will watch a special directory where it shows all groups and copying/storing a file to it will automaticall queue/print/store it depending on folder. The server it self has no automatic import/print/q…
-
Ok, I think you are importing to print/queue where I found a print all button. Seems to not work as expected. Will fix for next release. I was just testing the model to queue function. If you had this on a different location, please let me know.
-
Do you have ALWAYS_CHECK_ENDSTOPS enabled? To me it sounds like on first move with homing it is ignored when applying offset but on hop it is enabled when going down and z move stops as soon as z endstop is triggered. In this combination endstop ch…
-
Blue iris can handle more https://blueirissoftware.com/but I fear it is not free. Users told me about it and that it offers mjpg url as well, but did not test myself.
-
Problem is the commands are acknowledged directly or buffered in case of your pause. What normally works is adding @syncMotion before @gpio to enforce all commands before were executed by firmware. What it does is flood firmware with M400 of G4 unti…
-
Danke, habs gefixt. Muss mir mal eine Lösung zum erkennen des Problems suchen. Scheint immer nur die apple anbindung zu treffen. Vielleicht einfach jede Stunde neu starten.
-
Yes, M412 was removed, just did not mention it as it was only a tiny change. We often have lots of tiny changes not mentioned as they are mostly invisible to most.
-
There is a new option in printer configuration->general named "Enable print queue". Some users do not like piling up prints so only want the current print in it. Guess it is not selected in your case. Selecting it brings back old queue behaviour.
-
There is a new option in printer configuration->general named "Enable print queue". Some users do not like piling up prints so only want the current print in it. Guess it is not selected in your case. Selecting it brings back old queue behaviour.
-
No, nowadays offset in slicer should be 0 for most printers. This is only for the case that printers do not define offset on their own, but all current firmwares do that. Having both doubles offset making it print wrong.
-
Please don't hook /var/lib/Repetier-Server to a NAS. First of all no one except server should write to it, and than it must be available before server starts and any interruption can damage stability or cause defects in data. The runtime stuff shoul…
-
Just change the name and hit save. It will make a new printer with new nae and settings of the active printer.
-
Pico is using a different board architecture that is not supported. But also not all arduino boards are supported, so please check first if it is compatible with the firmware version you want to use.
-
If you run out of license due to this send support a ticket with license code and we reset them.
-
Actually since 1.4.2 this can be written with our programming language. Trick is using @sendToPrinter slug commandSends command to the printer with given slug name. That way you can execute command sin the context of another printer. Note that comma…