Results 11 to 20 of 76
Thread: Auto Bed Leveling troubles
-
09-17-2014, 01:52 PM #11
- Join Date
- Sep 2014
- Location
- Deer Park, TX
- Posts
- 62
It fixed the x and y axis, but z motor is still extremely slow.
Last edited by Roxy; 09-17-2014 at 02:32 PM.
-
09-17-2014, 02:34 PM #12
It is slow during Homing? Or all the time? You set that by changing these values:
#define HOMING_FEEDRATE {50*60, 50*60, 4*60, 0} // set the homing speeds (mm/min) Set to 7 or 8 *60 if your hardware can handle it.
#define DEFAULT_MAX_FEEDRATE {500, 500, 5, 25} // (mm/sec) Bump this up to 50 to go faster... Or even higher if you dare and have a reason to.
#define DEFAULT_MAX_ACCELERATION {9000,9000,100,10000} // probably 200 or 300 is safe here
-
09-17-2014, 04:50 PM #13
- Join Date
- Sep 2014
- Location
- Deer Park, TX
- Posts
- 62
i figured it out!!
It was
#define DEFAULT_AXIS_STEPS_PER_UNIT {78.7402,78.7402,400.0*8/3,760*1.1} // default steps per unit for Ultimaker
Thank you so much for your help Roxy.
-
09-17-2014, 06:18 PM #14
- Join Date
- Sep 2014
- Location
- Deer Park, TX
- Posts
- 62
Ugh.....troubles never end!!!!!
The servo does not retract before printing begins.
Help please!!
-
09-17-2014, 06:25 PM #15
Can you engage and retract the server using the M280 command? Can you post your Configuration.h file please.
-
09-17-2014, 06:36 PM #16
- Join Date
- Sep 2014
- Location
- Deer Park, TX
- Posts
- 62
Yes the M280 command works.
-
09-17-2014, 06:50 PM #17
Did you do a G29 ? That should retract it. But I know what you are seeing. I just fixed it in my copy of the code 30 minutes before you posted. In Marlin_main.cpp search for
static void homeaxis(int axis) {
Go about 70 lines further down in the file. Change the code block:
#if defined (ENABLE_AUTO_BED_LEVELING) && (PROBE_SERVO_DEACTIVATION_DELAY > 0)
if (axis==Z_AXIS) {
do_blocking_move_relative(0, 0, Z_RAISE_BETWEEN_PROBINGS);
retract_z_probe();
}
#endif
to include the retract_z_probe(); function call. You will need to add everything in RED.
-
09-17-2014, 07:20 PM #18
- Join Date
- Sep 2014
- Location
- Deer Park, TX
- Posts
- 62
do_blocking_move_relative(0, 0, Z_RAISE_BETWEEN_PROBINGS);
was not in my code
-
09-17-2014, 07:24 PM #19
- Join Date
- Sep 2014
- Location
- Deer Park, TX
- Posts
- 62
ok, i get what your saying
-
09-17-2014, 08:13 PM #20
- Join Date
- Sep 2014
- Location
- Deer Park, TX
- Posts
- 62
And more troubles. I am going to give up on auto leveling soon. Takes less time to manually level the bed.
The nozzle starts printing a few mm above the bed.
Ender 3v2 poor printing quality
10-28-2024, 09:08 AM in Tips, Tricks and Tech Help