Repetier

About

Username
Repetier
Joined
Visits
2,088
Last Active
Roles
Administrator

Comments

  • Yes, mac version is a completely different product so you can not compare it with windows. And yes, it does not have the feature. You can use our Repetier-Server which supports this as well as remote access from mobile in your intranet.
  • Normalerweise erkennen wir das es der gleiche Pi ist und Aktivierungen auf dem gleichen Pi führen daher nicht zu einer Reduktion des Zählers. Wenn alle wegen irgendwelcher Fehler verbraucht sind, können wir sie auch jederzeit zurücksetzen. Einfach e…
  • Re-Arm is not compatible. They do not use the due processor. It is more a smoothieware clone with Mega 2560 pinout. Use RADDS if you can. That is what I develop on. If you use RAMPS-FD make sure to get the latest version and not the one with invert…
  • > Joke aside i need it to be always on to connect to it and the printer is not always on.  Ok, but what is the connection? It is ok to disable printer connected to pi. Server will reconnect when you enable it or eventually power the printer boar…
  • With web interface I mean what you see in browser. So just do a reload in browser. But that is more for webcam problem. If you see that after a reload the content does not build up or switches between screen do not happen that the deadlock problem …
  • Since you did not answer the questions e.g. from MartinH it is hard to say what you did wrong. Also can you explain what you mean with "In the following you can see a part the G-code of the when T1 has a multiplier of 18. T0 is around E=80 and T1 is…
  • Did you select the right firmware? The default repetier-firmware uses binary protocol other firmwares do not understand, so they give not the right answer. The other thing is that native port connection will not reset the printer, so it will not se…
  • That was with 7" touchscreen over HDMI. Not sure this would work on 3.5" or if this still works with current linux distro. There are quite some solution for linux to get a boot screen, also it is not really worth the trouble. It will only appear a f…
  • It is operational already for due based boards. Not all special cases regarding hardware are covered but already quite some so I could use it already with 5 axes on a dual x printer. See https://docfirmwarev2.repetier.com/ for documentation. On gith…
  • Yes, be default it does not exist. You need to create it according to the syntax shown in manual and then restart the server. Only our pi image comes with a predefined file since we know settings and permissions for that distro.
  • Try other baud rates, especially 115200. Some boards do not reset and hence not send "start" on connect, which is ok. But they should respond on commands send which does not happen here so a wrong baud rate is probably the issue. Also make sure you …
  • N5697 M109 S200 triggers the timeouts I see at the beginning. First your timeout is set to 2 seconds, which is too low. Your firmware uses busy protocol but you should add at least 1 second to the difference firmware uses for safety. You see once te…
  • The server is the one serving data not apache. If you use port 80 apache might just forward data but origin is coming from server. Have you a webcam and did you try reloading webpage? mjpg streams can be quite big and at leat for chrome I have foun…
  • How did you test? Printing with 50% did work fine I guess? Yes, you are quite edgy with the high resolution but I did not expect it taking that much CPU. But if printing slower works fine it is in deed a cpu problem. Due boards are then best soluti…
  • OEM is only for manufactors. But if you think you bought the wrong license please mail me the license and I can give you the same solution so you upgrade.
  • ESP3D - does that mean you use tcp/ip over wifi for communication? In that case you might get pauses if wifi gets interrupted. I'm not a big fan of using wifi for sending serial data as it is not stable enough especially if I look at my wifi network…
  • No, that is just how many moves marlin caches. The input buffer is most likely 127 byte long.
  • Yes that was correct. Hope you used the sass template on our homepage to adjust it and not the precompiled stylesheet. Most likely your new css was not loaded from browser using the version in cache. Try a hard reload or clear cache or reload with …
  • Yes, that worked quite well. Still have to check why I can only see files when I insert a sd card and not when it was inserted, but that seems a internal error. Your solution is at least online in dev tree. Will see how to fix the file selection my …
  • Guess that is why force feedback is often used for deltas, also there you have the problem of ooze on the nozzle then, so you need to test with warm nozzle. Not that I have such a setup, but it would be a logical problem.
  • Which host version do you use on linux? With the AppImage I guess the parameter is not reaching the executeable in the end.
  • There is no general problem causing pauses. You need to check console if you experience communication errors which can cause this of course. Also make sure to not have too small gcode segments. With ping pong mode disabled you can normally send 300 …
  • #define ENDSTOP_X_BACK_ON_HOME 1#define ENDSTOP_Y_BACK_ON_HOME 1 is what I meant. ENDSTOP_X_BACK_MOVE is for the second test but endstop should untrigger also after that.
  • Yo can set the firmware extruder resolution so both multipliers are the same. How depends on the firmware. For Repetier-Firmware just open eeprom editor and change the value.
  • With corexy make sure after hitting to always go back to untrigger endstop. Here endstop and motor are not the same so better not trigger falsely.
  • Test it. At least G33 doe snot depend directly on autolevel but I never tested this combo. There is no real tutorial. There are so many combinations that it is not possible to describe like a tutorial. Just test functions and see if it does what ex…
  • It is a physical limitation. Z probe must be where the nozzle would be. Y-100 means then Y-121.5 whcih the mechanics do not allow. Also the remaining square must fit on bed. That unfortunatly reduces the correctable area. Outside it will use last co…
  • No time plan for this. How does Octoprint handle it - does it support multiple printers? I mean you cal also have multiple octoprint instances and switch spools between them. I assume they have some plugin you use for this. Would be interesting to s…
  • Cut filament in a test print. Once switch switches you should get either a message in log causing server/host to pause or see a filament change on lcd depending on your configuration.
  • #define HOMING_ORDER HOME_ORDER_XYZ is the problem. Use a variant with preheat temperature (you can set it 0). Only these use z probe position.