Repetier
About
- Username
- Repetier
- Joined
- Visits
- 2,088
- Last Active
- Roles
- Administrator
Comments
-
How stable is the network connection of the pi? For each connection it buffers events to send amd if receiver gets unreachable that might sum up. Also it normally detects lost connections and closes them. Will do some checks if that can be a problem…
-
Some more hints for loosing steps that can also be the reason: - Crosstalk to endstops. Disable endstop testing during print to rule this out. - Overheat protection of drivers The timing is only one possible reason that came in mind with big driver…
-
Do not use M209 autoretraction. That normally does not do what you want. Just leave it disabled. You already have G10/G11 for retractions in your gcode. That is all you need.
-
Buffer size is also the longest command you can send. Not sur eif thi counts with ping pong a sit has only one command anyway.
-
Ok, so I was right that it was using https even more then I thought. You need to add the certificate to your certificate store so it is trusted. Then you get no questions and connection should work. But server does not support https directly only ov…
-
Server does not use port 80. Nginx is on port 80 and certbot knows how to handle this if you say it should use the server. Bigger problem is that you need to be reachable under a domain with the set ip.
-
Server has own rules to count layers that might not match s3d rules as it only analyses the gcode. So if you have z hopping for position switches that might count as layer switch. If you analyse the layers in server you should see that same height h…
-
Look on the vendor homepage. There you mought also find a updated version.
-
Looking into sources I see #if TMC2130_ON_EXT1 > 0 Printer::tmc_driver_e1 = new TMC2130Stepper(EXT1_ENABLE_PIN, EXT1_DIR_PIN, EXT1_STEP_PIN, TMC2130_EXT1_CS_PIN); configTMC2130(Printer::tmc_driver_e1, TMC2130_STEALTHCHO…
-
The video works only with repetier-firmware, which is not what you seem to have. You seem to have marlin on it so you need a guide on how to do it on Marlin. Not sure how they do it, but know they have different commands for it. Install a new firmw…
-
In config tool you can always also select the exact pin number instead of the symbols defined in pins.h. Especially if you have a "compatible" board using different pins or having extra pins. Don't know this board, but that is the easy solution that…
-
Does not look like blocking commands. Does it execute the homing at the end and disabling motors? Do you make a timelapse video so that it could be the conversion? Also I'm quite such this happens in background but starting it can take a while, esp…
-
Maybe port number is here not good. 443 is the default port for https but if you only forward you do not use https. That might cause a confusion when it comes to websocket name as https uses wss which would be wrong and will not work. Just a guess. …
-
Yes, as that is th eonly way to set substeps per move to 10 and also updates per second to 10 instead of 180. We do not need that much as it is still linear and not nonlinear as with deltas.
-
Denke ab Mai wird es eine Beta geben wird daher wohl nicht als update angezeigt und muss manuell installiert werden. Aber da es das größte Update ist, das wir je hatten will ich es intensiv testen bevor ich es Produktionsreif nenne. Aber da es scho…
-
You get console in chrome my right clicking and selecting last menu item(inspect i guess it is named, have german localization so not sure) and then select console. Then you see the error debug messages. Especially easy if it happens on your PCs bro…
-
In general set mode to expert mode or you will not see the options. Options are in mechanics tab. Delay stepper high signalSTEPPER_HIGH_DELAY[microseconds] Needed for gantry systems and due boards.Delay stepper direction signalDIRECTION_DELAY[micros…
-
You did not by any chance store the error message in the browser console (developer tools) when this happened. That is the information we need to find what is causing this. As it now also happens on desktop it is clearly not the chrome on pi, it is …
-
Noch nicht. Ab 0.90 wird es für Pro eine Cloud Instanz geben die parallel mehrere Server ansprechen kann. Zu beginn etwas beschränkt aber mit der Zeit wird das voll funktionsfähig.
-
How do you do forwarding? If you do a full port forwarding - no problem. If that is a web proxy doing the forwarding you need to take special care of the websocket which needs special rules. See in our docs nginx as port forwarder. There we show how…
-
Vielleicht kann man es com usb port abhängig machen wo sie drin stecken. Muss ja nur eine Regel her die eindeutig ist.
-
Can you enable logging and show where it stopped and the last 500 commands in gcode and also what you have in the end gcode definition of your printer. It sounds like some command never finishes also server did not expect it to take time at all. And…
-
I guess I have an idea where it comes from. When reading port 8080 fails it seems to go into an endless loop instead of finishing. I found this when I remove dthe webcam and reinserted it - port 8080 was then there again but no reconnect and no vide…
-
Mh, always used the copy button and had no problem. But you are right without object I can also use Ctrl+C and not when stl is loaded. Need to investigate this.
-
It might depend on signal timing. By default there is no extra wait to prolong high/low signals. Some drivers, especially for bigger motors need longer pulse length. Please check your stepper chipset description. In config you can add extra waits to…
-
Ja sollte gehen. Man müsste dan nur noch das webcam script anpassen um nach den neuen Namen zu suchen und nicht video0.
-
So if I understand you everything continues working except objects using the canvas html object - circle and temperature graph. That sounds like chrome stopped running canvas for some reason. So that part might be crashed or stopped on intention to …
-
Try to deactivate autoconnect on startup in preferences->general. Maybe that is the hang because printer is not up when you start. Otherwise settings in registry are the same as active so should not really interfere startup.
-
Communication problems with firmware can come from cable, but with the line number setting it should already get fixed as it does not seem to happen so often. Communication to pis chrome is no cable issue as they are connected internally. The fact t…
-
It's not available in config tool. You need to add it in manual additions. /* Normal core xy implementation needs 2 virtual steps for a motor step to guarantee that every tiny move gets maximum one step regardless of direction. This can cost som…