Repetier

About

Username
Repetier
Joined
Visits
2,088
Last Active
Roles
Administrator

Comments

  • If it is just at the start timeout maybe too low. Can happen if firmware has busy support disabled or one slow command does not send "busy" while taking longer than 2s. Should be easy to spot if you log and see the last 15 commands before timeout. M…
  • If you have pro license, deactivate it in register. In linux debian you use  sudo apt remove repetier-server to uninstall the app. It leaves still /vat/lib/Repetier-Server with all your settings and data. You can remove them with sudo rm -r /var/li…
  • Yes, that is possible. See manual configuration chapter. At the end you see how to add klipper. Next update will make it even easier allowing to access klipper config menu from server web gui. Regarding duet that is problem. For TCP/IP connection y…
  • What printer/board are you using? What does lsusb  show as device for your printer? You need to enable log and show more then one line to see what happened. Did you get timeout, were new command send, did you get any responses from firmware after t…
  • Welche Ports verwendest du? Gut wäre /dev/serial/by-id/... hier damit die immer nur ihre Ports nutzen. Booten am Druckende ist nicht gut und vermutlich die Ursache. Sieh mal in der Konfiguration ob due USB neu verbinden bei timeout aktiviert hast u…
  • Genau was ich befürchtet habe. Hier die wichtige stelle im log: Send:14:07:45.065: N46838 G1 F3600 X40.779 Y134.35 E3901.86187 Recv:14:07:45.185: T:215.10 /215.00 B:67.05 /67.00 @:34 B@:15 Recv:14:07:45.427: ok Send:14:07:45.427: N46839 G0 F480…
  • No second extruder driver - bad in that case. Unfortunately stepper drivers are the most frequent part breaking I think. That is why I like boards with driver sockets so you can replace them easily.
  • > Tried both Z-axis motor Ports What do you mean? The board has 2 4pin connectors for Z and both work? Not relevant as both are powered from same driver. Configuration looks good. As a first test make z and x swap and see if then the old "x" is …
  • In windows you must group them together so they use same translation. Just grab the file on the right side and drag it on the other one and they get grouped.
  • Mac host does not really support multiple extruders. You not even assign an extruder - only the windows host can. Mac host is not in development and is replaced by  Repetier-Server which will get a slicer included in the future.
  • I'm just working on making a firmware description with RepRapFirmware.xml as base but without the unsupported commands and wrong commands replaced. I also added detection of unsupported commands so they get detected and removed on second appeareance…
  • On video it looks quite smooth, so no real pauses. I think it is just the acceleration/deceleration pattern for short segments. 0.3mm segment size is just too much for most printers. You already print slow and I think if you use speed multiplier in …
  • Great it works. Just do not understand what the first serial is used for. Client talks with host/server and Serial2 with printer firmware. But what is serial used for? Surely not firmware as it is not correct format. Looks like some monitoring seria…
  • Es wird über suchen aber auch nach einiger Zeit von alleine angeboten. Dann kann man sagen Autoinstall oder Überspringen.
    in Update Comment by Repetier May 2022
  • It's a zombie process and they can not be killed as they are already dead. They disappear after parent is stopped. Probably they got started from server restart webcam button? That makes the server the parent. Anyhow, question is more why they stop…
  • Danke. Wir aktualisieren doch regelmäßig den Server. Wir arbeitet grad am größten Update bisher mit vielen interaktiven 3d Ansichten. Wenn du linux benutzt kannst du dir das schon vorab ansehen: https://www.repetier-server.com/knowledgebase/nightl…
    in Update Comment by Repetier May 2022
  • Impressive speed. So ping pong ist already faster as many other printers who have no artefact problems. So it is not really communication speed. > I use Prusa Slicer, and the G-Code resolution is : 0.0125mm. Is that what you mean by segment size…
  • Yes, if you go to all target printers and save it should be saved permanently. For next release or nighty builds it is already fixed.
  • I'm not sure this is possible. If I understand you correctly you want to enable/disable the 5v power to an usb port since the led is not controllable via software? It is no problem to execute any command from server at times where needed. With @exe…
  • Ok, first the curves look like segments are not that short or they add pauses in between. What you see is acceleration/deceleration which causes extrusion thickness to change (that is what advance in firmwares tries to compensate). What is the speed…
  • Logging aktiviert man im Drucker Menü über "Druck Logs". Was aktuell passiert kann man aber auch in der Konsole sehen. Hier ggs. ack/Befehle Filter deaktivieren um genauer zu sehen was da gerade passiert.
  • Das geht erst mit dem nächsten release. Kann dann in den Druckereinstellungen deaktiviert werden.
  • Das sieht nach Kommunikationsproblemen aus. Wenn ich das richtig sehe ein move alle 3 Sekunden. Dein timeout ist vermutlich auf 3s eingestellt. Wenn es passiert sieh in der Konsole nach - besser noch aktiviere vor dem Druck logging dann siehst du au…
  • In server prepend # to line to send it 1:1 without interpretation of server. So #M110 S1 should prevent the interpretation and side effects. Strange idea to misuse such a standard g-code. Anyhow that should do the trick. 2: We send same commands as…
  • That was the important info. Just could reproduce it so it is a server bug. What happens is that the code gets copied and internally stored, but no save config gets called. So unless you have done something else triggering a save the g-code is lost …
  • Ok for some reason the x flag is not set here. Run sudo chmod a+rx /var/lib/Repetier-Server/scripts/hardware_info and then it should start to appear after a minute. I found the bug in our post install script where there was a type in the line setti…
  • In config tool here: https://share.cleanshot.com/mS7il2 you also see the macro names for config files.
  • You are trying at the wrong places:-( From dashboard select your printer. Then on the right you have a printer context menu (hamburger icon) - there you have the klipper config entry that you need where you install klipper and where also the editor …
  • You can not say klipper was already installed with fluidd on printer - only a stub to communicate with klipper gets installed on the printer. You still need klipper server installed on the pi, but that is easy. First make sure you have your klipper …
  • What does the "WiFi.h" library d? http or just tcp connection? As said it must be a plain tcp connection and port 8080 sounds like http. Also the loop looks much like it just answers a http request, that is not the kind of connection you need for co…