Repetier
About
- Username
- Repetier
- Joined
- Visits
- 2,088
- Last Active
- Roles
- Administrator
Comments
-
Best supported device is Due + RADDS whcih is my testing environment for development. You can have 95KHz in single stepping mode, with doubla nd quad stepping you can go to around 300K. If you have a delta you also profit from higher update frequen…
-
You mean this error message: 23:44:15.766 : Error: [steps] Could you try upgrading to dev version as I know that it does not have this message.
-
Ok, having multiple lines and decide in parse and convert to gcode there is also a solution. At beginning all params are unset. Then you see the cases where the params get set. It is always adding a bit to a params var plus setting the variable. Ju…
-
Happens when server does not get expected response. Typical reasons: - wrong baud rate - wrong port - wrong firmware selected
-
All Atmel 2560 have 4K eeprom build in, so that should not be a problem. What about normal eeprom values. Can you change these values? Just to test that the buildin eeprom is working.
-
Sorry, we are repetier forum and I have 0 experience with marlin delta. Here I would advice a marlin forum. Maybe some marlin user will show by, but marlin forum should give faster and better results.
-
It should not be selectable at all. The main print butten is a pause at the moment, so i guess you used one of the print buttons in preview? You should not really do anything heavy like slicing with host while printing. This can easily cause small …
-
Unckeck "run filter after every slice" in advanced tab in printer settings.
-
floorf is the float version of float. Since double equals float on arduino that might have the result of not having this official variant. Will test.
-
Should work now, thanks for notification.
-
If you reset yourself you need to wait for the out serial data to be send. Otherwise as you see the "start" is not as clean. Maybe a newline would be a good idea anyway to discard possible garbage in previous line.
-
First problem is to detect very early that it is no g-code as expected and switch to your own parsing routine inside gcode.cpp parser. If all lines start with IN you could decide on second char that it is HPGL since no GCODE would start like that. T…
-
In height map you can copy the values to clipboard and enter in text editor or excel. Plugins in host are supported, see the plugin guide on our homepage.
-
Microstep size is hardware given. In firmware you just set what you defined in hardware so it matches the real steps per mm.
-
When printer reboots it sends a "start" which causes host/server to stop any print. What you have above is just like a pause form host/server only requested from firmware side. If you really rebootet you will not know why any more and also since "s…
-
Do you have any filament related scrips in server that would explain the coordinates?
-
Bresenham makes the best approximation possible for a line with discrete steps. We can only change position by microsteps so you will always have steps, but they should be of size microstep. If they are of size step it is wrong motor management. Siz…
-
Ok, wrong direction. Increase Z_PROBE_HEIGHT by 2.2mm then. I always mix the directions.
-
Did you already try the 64 bit AppImage version which comes with included mono and slicer.
-
Faster speeds make it easier to hold position since motor want to move anyway it uses the inertia for this. On slower speeds the rotation settles a bit more at the microstep and then their accuracy starts to become more important. Some drivers allow…
-
Just tested on my delta with latest dev version: 12:17:51.818 : Info:Autoleveling enabled12:17:58.773 : Z-probe:16.550 X:-93.34 Y:139.9812:18:00.036 : Z-probe:16.572 X:-46.68 Y:139.9812:18:00.774 : Z-probe:16.550 X:-0.01 Y:139.9812:18:02.358 : Z-pr…
-
Ok, have figured the problem with bed height map. You need a starting height
-
Did you already test rebooting the pi? What I also see is that seem to have some reference to a Robo3d printer which is not configured. I guess that is the one you are talking about. You could check if the folder /var/lib/Repetier-Server/printer/Ro…
-
Sounds like you have enabled postprocessor in printer settings advance tab without specifying a valid path. Just disable it, you do normally not need a postprocessor.
-
x-axis steps per mm in eeprom.
-
Motors will move ideally in microstep distance. So first you should check if the size of the steps equals the microstep distance. Next thing is that microsteps are not always where they should be. If the current is too low or the forces to hight the…
-
ENDSTOP_Z_BACK_ON_HOME 1 is good for z max endstop and what I meant.
-
Check what is stored in eeprom. Guess your config data is not the active data any more.
-
You not put variables either in host or server scripts. They simply do not know anything about the slicer settings you used. This only works in the CuraEngine Scripts, because there they get replaced in the slicing process after you told them what f…
-
Maybe 70°C is too much for the bed with PLA. I use BuildTak with 50°C for PLA and have normally no warping problems. PLA gets weak quite early so with 70°C it might stick but is also not fully hard which is not so good. I remember that even with kap…