Repetier
About
- Username
- Repetier
- Joined
- Visits
- 2,088
- Last Active
- Roles
- Administrator
Comments
-
Many printers now use a graphical display which does not show the status line on the display that can be set with M117 and is used by host to show ETA on display. So that is not necessary an error - more wanted by the printer developer.
-
Sure z axis has #define ZAXIS_STEPS_PER_MM 3194.75 steps per mm? With 2mm/rotation pitch 3200 would be normal but if microsteps did not get set it would be way off. Try with lower speed as well and check values in eeprom if they are the same. For s…
-
Vermutlich falsch angewendeter G33. Der sollte direkt nach G32 S1 laufen damit er sich auf die gleiche höhe bezieht. Schließlich wird es als abweichung gegenüber der Regressionsebene verstanden. Wenn aber alle werte positiv sind passiert beim Überga…
-
Please login over ssh and see if you stay logged in. Then check with ps aux | grep tier if server is running and when it was started. What you say sounds like the computer running server is reachable but server it self stops receiving communication.…
-
Ja kann man wenn man verbunden ist und der Drucker Strom hat. Von Strom gehe ich mal aus, daher die Frage besteht eine korrekte Verbindung zum Drucker? In der Web gui auf konsole gehen und sehen ob das Verbindungssysmbol grün ist und ob man auf M114…
-
Stau ist kein server Problem denke ich. Das mit dem Lüfter kannst du in 0.94.0 ignorieren. Durch einen bug führt setzen einer Temperatur dazu das der Server eine andere Lüftereinstellung denkt zu haben. Ist in 0.94.1 bereits behoben.
-
Yes.
-
Don't know which post you mean and am completely confused now with the mix. of errors. Do you now have a version running and which one? Have you marked the post is always visible when unconnected flag in printer configuration? Is prusa selected to …
-
Ok, some good point. First fan off send currently M107 Px which is deprecated and should not be used any more according to reprapfirmware wiki, so for 0.94.2 I put M106 P{i:fanId} S0In firmware description. So my guess is that is why it does not dis…
-
Endstops are only tested during homing or if ALWAYS_CHECK_ENDSTOPS is set 1. But with 1 you can get false signals from cross talk that skew your print. So make sure you don't have that problem when enabling it. There is no function for emergency st…
-
Haven't updated the image yet. Comes next. I'm always using wired connection via dhcp (easiest solution) and no problems. If you don't use dhcp you need to set all parameter including netmask in ip and gateway/nameserver.
-
Hope there is a solution in bootstrap-vue for this. I fear it will be real problem with the desktop like modification for scrolling. Need to make the menu it self scrollable I guess. In server I had to rewrite the menu function my self get it all …
-
The solution is correct and mainly depends on timeout. The problem is that the port does not disappear if you disable power. The usb chip gets fed via usb. So first we assume a communication problem and only if we see no advance and the flag for alw…
-
No repository. I handle this all manually. Have fixed that error. If you remember the other one I also fix it for next release or send me the po file and I do a diff check.
-
https://www.repetier-server.com/manuals/programming/API/index.html listPrinterParameter: NoneResponse[ { "active": true, "job": "none", "name": "DeltaTower", "online": 0, "slug": "delta" }, { "active": false, "job": "none", "name": "Azteeg X3 Pro v…
-
Update is out.
-
Wenn du dabei das kernel image aktualisert müsste es auch auf dem 8gb pi 4 laufen. Wenn dass der Fall ist sag bitte bescheid was du dazu eingegeben hast. Ich mache nämlich gleich noch ein update für 0.94.1 dann kann ich das mit reinpacken. Port sol…
-
Yes, will be fixed in 0.94.1. Mouse emulation currently disallows scrolling due to a problem. There is already a beta but final 0.94.1 should come out today or tomorrow. So if you can wait a day ...
-
Z axis is moving too fast if you hear it loosing steps. Reduce acceleration to 100 and max speed to 5. Then see if it works and increase if you want to see where your limit is.
-
For zprobe did you also define servo correctly? See delta/Deltatower RUMBA32 for example on how to configure the z probe bltouch/3dtouch correctly. Just adjust pins. Filament detector is added at the end. See Cartesian/Felix Pro 1 as example which …
-
Das neueste image ist von 2020-05-27 also schon was älter. Ich weiß für Pi 4 musste ich updaten, das was V20. Hier https://www.raspberrypi.org/documentation/linux/kernel/updating.md heist es normal reicht apt update / apt upgrade was ich für V21 auc…
-
Firmware should limit speed if necessary. So just take what speed you like. For slicing travel you normally want it high like 200mm/s only if this makes too much vibration you would reduce it. Z try 5 or 10. Faster is better as it reduces time to fl…
-
Exactly. From the measured points we compute a regression plane. For motorized 3 point leveling we then assume one motor height as reference and move the other 2 to match the theoretical horizontal level. Then you can retest and update the update, s…
-
BTW: How do you control the lights? If it is a web command you can use the new web actions instead.
-
A checkbox makes no sense. You would need to ask for every upload since it might also have no purge layer or one only at printing height. Layer count is still useful to feel progress. There are also other cases with variable layer height that makes…
-
Hab gerade noch mal sicherheitshalber getestet. Also image runtergeladen auf sd karte gespielt und hat sofort gestartet und display auch das interface angezeigt. Der erste start kann ein paar Minuten dauern weil die sd Karte expandiert wird, kommt a…
-
If you use the server command ;@webAction myaction p1 p2then $1 gets replace by p1 and $2 by p2 before being send. This of course does not work with web actions in menu - they can not have parameter. Only server commands can add parameter for the c…
-
In Server tab you have a tab "Stored prints". If you have a file in queue there also "Waiting Prints" appears. So only visible if you have there a print that prevents a new one from being started directly.
-
The slug is the folder where server internally stores all printer data and also name of the config file. So that gets set when you define the printer and stays constant until you delete the printer. The name is the user readable version and just sto…
-
Active extruder is just the last T0/T1 command send and extruder at start is always T0. Don't understand why klipper does not know that command. It is quite essential for all cnc machines. Files are not allowed since our disk space on server is lim…