Repetier

About

Username
Repetier
Joined
Visits
2,088
Last Active
Roles
Administrator

Comments

  • Better to upgrade to 1.0 where many bugs around leveling are fixed. One thing is if z probe bed distance is lower then start height it might not go up all the way. G32 enforces this even. And no, you can not calculate endstop offsets with z-probe.…
    in G30 Comment by Repetier December 2017
  • Plase try M232 to reset max counter, then run code and M232 again. Then you know speed (should be the same) and linear steps for your system and also check your steps per mm for comparison. Do you have automatic retract enabled? I have none enabled.
  • Looks like you are too close in general in the picture.
  • Yes, do what I said. Use mirror x and not dual x and it will work.
  • #define DISTORTION_START_DEGRADE 0#define DISTORTION_END_HEIGHT 0 No, the values were good. Start degrade is when it should start reducing and you want at least one layer with full correction. Above end height it will do no correction at all.
  • Ok tested your code and worked pretty well. Acceleration 1100 and I got a complete zigzag line. Always extruding forwards. M232 returned 11:12:54.869 : linear steps:17 quadratic steps:0, speed=2.62 meaning at maximum it advanced 17 steps at resolu…
  • #define DISTORTION_EXTRAPOLATE_CORNERS 0 is better. That was meant for deltas that can not reach edges of a rectangle. You also provided the answer to the problem: #define DISTORTION_START_DEGRADE 0.5#define DISTORTION_END_HEIGHT 1 G00 z-1.45G92 Z…
  • It works with usb. TCP/IP is planned for one of the next updates as well. Just make sure that heaters have good names especially if you have multiple extruders name them T0, T1, ... as smoothieware has not the concept of active extruder for temperat…
  • This is a configuration issue in your firmware. Since you use G29 it seems not repetier-firmware which uses G32 for autoleveling. In any case it measures wrong height so z=0 seems to be below bed. G1 Z10 manually and then with manual controls go dow…
  • @ShaneB Thanks for the plugin creation. We will test it and add a link to it from our homepage, so more people will be able to see it.
  • Dual X stepper means extruder 0 uses first x stepper and extruder 1 second x stepper motor. I guess you wanted mirror x stepper so both turn the same time.
  • 800 is in deed not high for acceleration. And fats parts are 70mm/s which is also ok. When I get the time I test with your script instead of mine I created with marlin advance tool and see how it works.
  • Adding TCP instead of USB for supporting firmwares is planned. But your printer requires a firmware then that accepts g-code through TCP for it to work. Otherwise you need the already known solution of a computer with usb nearby.
  • Did you test with recent 1.0? Did the same test and could see an improvement until it got worse again with bigger y values. Do not think it reversed on slowdown, but that also depends on acceleration. The higher your acceleration the faster it needs…
  • In the original config there is some math to compute the horizontal radius when centered where a bigger radius subtracted slider and effector offset. In fact these offsets are not relevant in the math and never get used. Only the result. So in the c…
  • Edges are always the first places to warp and because of the direction change also tend to bond not as good. This also depends a bit on temperature of PLA and which PLA you have. Different vendors have different quality also regarding warping. You c…
  • Don't think of it as z. Think more like on/off. For on add M400 ; Wait moves to finish M340 .... ; servo position G4 P50 ; // wait for servo to position And for off M400 ; Wait moves to finish M340 .... ; servo position off G4 P50 ; // wait for se…
  • Make sure to have same speed for all layers. First layer is often handled differently by slicers and print with lower speed. What you want is slic3r with fixed set extrusion width = laser width and constant low speed matching the power you need. Jer…
  • We have no predefined slicer profiles, so you need to make your own. You also need to tell slicers that you have 2 extruders (at least slic3r). For cura you can only use second extruder for support or if you have multiple stl files you can assign th…
  • First make sure you have a distortion correction (stored in eeprom) G33 L0 should list the bump pattern. Then make sure it is enabled - M323 S0/S1 enable disable distortion correction P0 = not permanent, P1 = permanent = defaultAny m…
  • Yes, can happen if streamer software uses different header capitalization then expected. Seems like mjpg_streamer has changed this so that it does currently not work, but should work again on next release. We are working hard on it, but it is a big …
  • Just tested and have the same now. Was working before update to high sierra. Are you also on high sierra? Ig yes, then I need to check what the update broke.
  • First check model in print preview tab. You should see it there. Then when printing enable commands in log so you see what gets send. After your first print this shows nothing, so hard to say if it had send anything. If you enable ACK you even see i…
  • If you have z min homing with z probe it works only when x and y are homed. It will go to xy position for z probing (requires homing order with preheat to use the xy coordinates). I guess you have not set this or not selected homing order preheat, x…
  • What are you printing with? Warping always sounds like ABS while PLA is much easier to print. PLA 50-55°C bed temp with kapton or painters tape will normally work, also other surfaces like BuildTAK work often much better. Also distance for first le…
  • No gcode should also work, but long filename scan sometimes be a problem, while 8.3 filenames are better supported. For V2 I will update the sd library to a version officially supporting long filenames somewhat better and hope it goes better then.
  • You will not have laser enabled when printer is idle. In fact you will only have it enabled while moving around. And these are the condition on which moves it will enable the laser. The E trick is more for powder type printers using a laser, so they…
  • YOu can use the z man pin as output, but that does not mean you have to enable z max endstop. In fact, that is just what prevents it from being used correctly. Making it an endstop pin means setting it as input, while oyu need it as output. So simpl…
  • I see what you mean. That is an error. G29 is meant here. G33 always stores in eeprom directly if eeprom is set to be used in configuration.
  • RAMPS has D9 for many functions like fan or second heater as well, so you probably have selected to have a fan so that will overwrite it. Are you sure your laser needs 12V from D9? My laser has power input plus a signal input (5V TTL) to tell if it…