Results 1 to 10 of 76
Thread: Auto Bed Leveling troubles
-
09-16-2014, 10:09 PM #1
- Join Date
- Sep 2014
- Location
- Deer Park, TX
- Posts
- 62
Auto Bed Leveling troubles
So Ive followed zennmasterm's youtube video, then fixed the Z_PROBE_SLED bug https://github.com/Maxigraf/Marlin/c...ee7c45f2ffb2a6
loaded the firmware and now im getting this error:
[ERROR] Error:Printer stopped due to errors. Fix the error and use M999 to restart. (Temperature is reset. Set it after restarting)
Any help please!!!
-
09-16-2014, 10:30 PM #2
- Join Date
- Sep 2014
- Location
- Deer Park, TX
- Posts
- 62
It has to be something in the Marlin code. Reloaded the RAMPS firmware and everything is ok.
-
09-16-2014, 10:43 PM #3
- Join Date
- Sep 2014
- Location
- Deer Park, TX
- Posts
- 62
Fixed it!!!! wrong motherboard setting!!!
Thanks anyways!!!
-
09-16-2014, 10:54 PM #4
- Join Date
- Sep 2014
- Location
- Deer Park, TX
- Posts
- 62
Fix one problem...another arises. Step motors moving super slow. UGh
-
09-17-2014, 12:30 AM #5
- Join Date
- Sep 2014
- Location
- Deer Park, TX
- Posts
- 62
When I upload Marlin, I get the following
+Z axis moves extremely slow
-Z axis...no movement; says endstop hit
Same for x and y
Im at a lost here. Any help would be appreciated.
-
09-17-2014, 08:56 AM #6
What values do you have for these settings?
//// MOVEMENT SETTINGS
#define NUM_AXIS 4 // The axis order in all axis related arrays is X, Y, Z, E
#define HOMING_FEEDRATE {50*60, 50*60, 150, 0} // set the homing speeds (mm/min)
#define DEFAULT_AXIS_STEPS_PER_UNIT {80,80,4000,854.91} // default steps perunit for ultimaker {78.7402,78.7402,200*8/3,760*1.1}920
#define DEFAULT_MAX_FEEDRATE {250, 250, 2, 22} // (mm/sec)
-
09-17-2014, 12:59 PM #7
- Join Date
- Sep 2014
- Location
- Deer Park, TX
- Posts
- 62
//// MOVEMENT SETTINGS
#define NUM_AXIS 4 // The axis order in all axis related arrays is X, Y, Z, E
#define HOMING_FEEDRATE {50*60, 50*60, 4*60, 0} // set the homing speeds (mm/min)
// default settings
#define DEFAULT_AXIS_STEPS_PER_UNIT {78.7402,78.7402,200.0*8/3,760*1.1} // default steps per unit for Ultimaker
#define DEFAULT_MAX_FEEDRATE {500, 500, 5, 25} // (mm/sec)
-
09-17-2014, 01:11 PM #8
- Join Date
- Sep 2014
- Location
- Deer Park, TX
- Posts
- 62
I changed the values to match yours.
When I attempts to move through the different axis, this is what happens.
+Z: endstop hit....no movement
-Z: step motors move a bit slower than normal
+X: endstop hit....no movement
-X: Slow movement
+Y: endstop hit...no movement
-Y: slow movement.
Would it be possible to just post your configuration.h file so I can go through line by line to see where mine has errors?
-
09-17-2014, 01:29 PM #9
See this thread: http://3dprintboard.com/showthread.p...correct-offset
-
09-17-2014, 01:30 PM #10
The fact it won't move at all on the X & Y is probably because you have these set TRUE
#define min_software_endstops false // If true, axis won't move to coordinates less than HOME_POS.
#define max_software_endstops false // If true, axis won't move to coordinates greater than the defined lengths below.
My Configuration.h is attached.
Also, it is possible some of the confusion is coming from this if you have the HOME_DIR set to +1.
// ENDSTOP SETTINGS:
// Sets direction of endstops when homing; 1=MAX, -1=MIN
#define X_HOME_DIR -1
#define Y_HOME_DIR -1
#define Z_HOME_DIR -1Last edited by Roxy; 09-17-2014 at 01:52 PM.
Ender 3v2 poor printing quality
10-28-2024, 09:08 AM in Tips, Tricks and Tech Help