rhklein
About
- Username
- rhklein
- Joined
- Visits
- 31
- Last Active
- Roles
- Member
Comments
-
It's Repetier 1.0.4 dev, configured as cartesian. Conversion to radians happens in postprocessing. Yes, the sides are segmented, but their are no differing feedrates commands. Adjusting the flowrate multiplier via LCD changes the XY speed?! Low flow…
-
Slowdown happens when starting on layer 0, so no INTERPOLATE_ACCELERATION_WITH_Z. I can see the printer move faster when i adjust the extrusion multiplier (not speed! multiplier) on the LCD, so I thought they were somehow coupled. I tested with equ…
-
Yes RETRACTION_Z_LIFT 5 and AUTORETRACT_ENABLED 0 deactivated. I only used T0 and just change the M163 ratios for different colors. Sending only T0 doesn't do anything even wqith M302 activated This is the minium of commands to reproduce the error…
-
I found the error in my postprocessing script which attached a 'T0' command after every color definition. T0 causes a de-retraction even before G10 causes a retract. M83G91M302M400M163 S0 P1000M163 S1 P0M163 S2 P0M163 S3 P0M163 S4 P0M164 S0;T0G10 G…
-
Ah okay, misunderstood the part about V2 not having a mixing module yet. My programming skills aren't good enough for a C++ implementation. This will probably be a G-code post processing script with M42 P.. S.. codes for now. Not sure if there will …
-
Since the diamond only mixes passivley, it's best to have as many individual colors as possible. Does V2 allow me to add 12 extruders and only mirror extruder 7-12 to 1-6, since I only print with one diamond at a time? Then depending on which diamon…
-
Ah thanks, extruder change overwriting stored max speed explains why I got working behavior the first time. Limiting all 5 extruders to say 10mm/s, does it mean my actual speed is 50mm/s?
-
I can confirm now that the Z Axis stops working completely, not only the baby stepsg stop working. Can setting the Z axis below zero be the problem? Like: G1 Z1 G92 Z2 G1 Z0 //Thanks as always, not hyper important to solve this.
-
It's on a cartesian machine. I'm not sure if the Z Axis stopped working completely. Is there anywhere I could look for a solution, no matter if it's only babystepping or disabling the whole Z axis?
-
Copied your gcode and it will work from SD card: M163 S0 P1M163 S1 P0M163 S2 P0M163 S3 P0M163 S4 P0M164 S0T0M83G1 F500G1 E150 Could make it a little shorter and it still works, but don't know why. One strange problem though for the last extruder,…
-
I tried G91 and M83 (relative extrusion) both didn't work. When extruding from host I printed from a gcode file not using the buttons. Hm.
-
I tried G28 and G1 X100 from SD card, both work fine. but any G1 E10 movement gets ignored and the print finishes without extruders movement. With repetier host everything is fine. Is there nothing repetier host sends when connecting that is differ…
-
Repetier said: One more reason not to do so from an other thread:"In my experiments with a dual extruder with one nozzle last night it became clear to me that you cannot allow one stepper to be shut down while you use the other. When this is…
-
I'll compiled with EXTRUDE_MAXLENGTH 1000 Dfeault value was 160 I think. If it were limited to 100mm, then G1 E150 shouldn't work from host neither?
-
Ran into same problem again. The following Gcode works when send from repetier Host. But printed from SD card doesn't work. M163 S0 P1M163 S1 P0M163 S2 P0M163 S3 P0M163 S4 P0M164 S0T0M83 M302 S1G1 F500G1 E150 Even turning min_extr_temp down to …
-
Thank you, tested M400 and the color change starts at the right spot now. I could not see any visible pause or blob forming.
-
Ah Okay, thank you, I think I understand. There is no way to know the buffer in advance, is it? It depends on the individual gcode? No way to reliably preposition via postprocessing? Segmentation of every line to 0.01mm will help, but hard to handle…
-
Okay, not exactly sure what during a print means? Even if the line is segmented like this? G1 X1 G1 X2 M163.. G1 X3 The color change in my case will appear before G1 X2, though it's set to change AFTER G1 X2. Is there a fixed amount of advance? I'…
-
//
-
Problem was my fault, I set the virtual extruder ratio to 0. Thanks for your fast help anyway, as always.
-
They are written to SD card like a usual .gcode file.
-
I'm using dev 1.0.0
-
Ah, thanks. I didn't know that. Slic3r only lets you turn on firmware retraction, but doesn't let you choose between short or long retract. It does so for non firmware retraction, but doesn't matter much for my case. As always, thank you for your f…
-
Yes, I'm using a mixing extruder. Is there a way to force retraction before a color switch? I thought switching virtual extruders from T0 to T1 would trigger an extruder switch?
-
your x and y probe offsets are 43 and 7. Try setting your grid defining points accordingly. Like so: #define Z_PROBE_X1 43 #define Z_PROBE_Y1 7#define Z_PROBE_X2 177#define Z_PROBE_Y2 7#define Z_PROBE_X3 43#define Z_PROBE_Y3 193 and try the develop…
-
Okay, just tried the dev version and that fixed it! I had a problem with the online config tool though. I loaded my old 0.92.9 config file into it and in the configurator everything showed as previously configured, but after downloading all my old …
-
Thanks! >- That did the job. I downloaded the dev version via the online config tool.Is Github more up to date?
-
I didn't realize the error message was much longer. Is this more complicating than just replacing pin names? Arduino: 1.8.1 (Windows 7), Board: "Arduino/Genuino Mega or Mega 2560, ATmega2560 (Mega 2560)" In file included from sketch\HAL.h:83:0, …
-
I'm using the current dev version. line 1372 in extruder.cpp is " if(Extruder::dittoMode)" for me. I tried to replace both instances of "WRITE(EXT1_STEP_PIN,!START_STEP_WITH_HIGH);"with "WRITE(EXT1_ENABLE2_PIN, EXT1_ENABLE_ON);", but still get the …
-
I'll do that. Right know when slicing with more than 16 extruders (slic3r) I manually replace the toolchange command Tx with a new M163 extruder weight definition. Thanks for your fast response and the great firmware. =D>I love playing with the …