Welcome! Log In Create A New Profile

Advanced

First layer about 1/8 inch above bed Also Heater error

Posted by imwhoim54 
First layer about 1/8 inch above bed Also Heater error
September 08, 2016 02:31PM
Hello all

When I try to print the test cube that came with the machine (I have an Anet A8 Prusa I3) The first layer get extruded about 1/8 inch off the platen. This make for a very wonky cube let me tell you! It looks like someone tried to glue ribbon together to make a cube! (see attached picture)

Anyway... have leveled the table so it seems to be as close as I can get it.

Anyone have an idea of what might be causing this?

My second problem seems to be that I keep getting a Heater error which halts the heatup/printing cycles. In an attempt to see if this was an issue, I disabled the Hotend protection by commenting out the line:

//#define THERMAL_PROTECTION_HOTENDS // Enable thermal protection for all extruders

In Marlin Configuration.h and it STILL does it. Is there something I'm missing here? I'm printing in PLA so not using the hotbed.

Any help or ideas would be very helpful!
Thanks in advance for your help!
Don
Attachments:
open | download - 20160908_131510.jpg (48.1 KB)
Re: First layer about 1/8 inch above bed Also Heater error
September 09, 2016 12:14AM
Quote
imwhoim54

My second problem seems to be that I keep getting a Heater error which halts the heatup/printing cycles. In an attempt to see if this was an issue, I disabled the Hotend protection by commenting out the line:

//#define THERMAL_PROTECTION_HOTENDS // Enable thermal protection for all extruders

In Marlin Configuration.h and it STILL does it. Is there something I'm missing here? I'm printing in PLA so not using the hotbed.

Any help or ideas would be very helpful!
Thanks in advance for your help!
Don

Thats the hotend thermal protection... Scroll down a little... Hotbed is the one you want to comment out. You probably want hotend protection on


I had exactly the same problem with the high starts. [forums.reprap.org]

First change the custom g-code in slicer in the printer tab. 5000 is too fast! I changed it to 120 and reduced the distance to 2.

If that doesnt fix it. change the firmware. Max home rate, acceleration and max feedrates for Z. I'm running:
150/1 max home
Max feed 5 (z only)
Max Acceleration 5 (z only)

Reducing z jerk to a number smaller than your smallest layer height may also help.
Try changing one at a time and let me know which ones do the most smiling smiley

Mong
Re: First layer about 1/8 inch above bed Also Heater error
September 09, 2016 12:16AM
Oh and as a workaround. I was pausing the print during the skirt and clicking z-home then restart.

It started the print on the bed, but you may find you have layer spacing problems after that.
Re: First layer about 1/8 inch above bed Also Heater error
September 09, 2016 12:43PM
Hello Mongrel Shark

Thanks for your input!

Tried changing the custom G-code and it was still doing the same thing. tried 2 different printing programs (after it was sliced.) to no avail. I have also tried the workaround you suggested.. It doesn't matter if I use the program or the machine to move the Z axis down to where it should be, When I resume the print it pops right back up to the same height it was at before and it makes no difference.

Now I really hate to sound dumb here but I can't find the variables you speak of here:
_________________________________________
If that doesnt fix it. change the firmware. Max home rate, acceleration and max feedrates for Z. I'm running:
150/1 max home
Max feed 5 (z only)
Max Acceleration 5 (z only)
_________________________________________

anywhere in the Marlin firmware. Am I missing something?

Thanks again for your help!
Don
Re: First layer about 3.6mm above Table
September 09, 2016 11:03PM
Hi guys

Some additional information. (I got the Hotend error problem corrected):

When I use Repetier to slice a cube, the very first G1 command sent is:

G1 Z0.350 F7800.000

Then it goes on to print the rest of the calibration cube in mid air.
Obviously this should be 0.0 or 0.1.
I tried changing the slicer parameter for the layer height to 0.1- The first G1 Z position code is still

G1 Z0.350 F7800.000

if there someone out there that can tell my where I can change this?
Thanks
Don
Re: First layer about 1/8 inch above bed Also Heater error
September 09, 2016 11:05PM
The setting you are looking for are in the configuration.h
I'm on a PC with no Marlin atm So here is a link to the github version (it might be the nightly/unstable version, You probably have the stable version, I'm bad with github. It's close enough for this example)
[github.com]

Around line 736 is where you want to look. Its a bit past halfway down. It looks like this. You could also [ctrl]+F to bring up a search dialog and enter // MOVEMENT SETTINGS That should take you straight there. provided you are in config.h when you search..

#if ENABLED(Z_SAFE_HOMING)
#define Z_SAFE_HOMING_X_POINT ((X_MIN_POS + X_MAX_POS) / 2) // X point for Z homing when homing all axis (G28).
#define Z_SAFE_HOMING_Y_POINT ((Y_MIN_POS + Y_MAX_POS) / 2) // Y point for Z homing when homing all axis (G28).
#endif

// Homing speeds (mm/m)
#define HOMING_FEEDRATE_XY (50*60)
#define HOMING_FEEDRATE_Z (4*60)

//
// MOVEMENT SETTINGS
// @section motion
//

// default settings

#define DEFAULT_AXIS_STEPS_PER_UNIT {80,80,4000,500} // default steps per unit for Ultimaker
#define DEFAULT_MAX_FEEDRATE {300, 300, 5, 25} // (mm/sec)
#define DEFAULT_MAX_ACCELERATION {3000,3000,100,10000} // X, Y, Z, E maximum start speed for accelerated moves. E default values are good for Skeinforge 40+, for older versions raise them a lot.

#define DEFAULT_ACCELERATION 3000 // X, Y, Z and E acceleration in mm/s^2 for printing moves
#define DEFAULT_RETRACT_ACCELERATION 3000 // E acceleration in mm/s^2 for retracts
#define DEFAULT_TRAVEL_ACCELERATION 3000 // X, Y, Z acceleration in mm/s^2 for travel (non printing) moves

// The speed change that does not require acceleration (i.e. the software might assume it can be done instantaneously)
#define DEFAULT_XYJERK 20.0 // (mm/sec)
#define DEFAULT_ZJERK 0.4 // (mm/sec)
#define DEFAULT_EJERK 5.0 // (mm/sec)


//=============================================================================


This line is the bigest problem
#define DEFAULT_MAX_ACCELERATION {3000,3000,100,10000}

change 100 to something much lower. 5 or less. Some people run as low as 0.5! I'm still learning how Acceleration works so can only offer limited help here. I am running 5 and thinking I may need to turn it down.

If the acceleration is too high your motors can overshoot. If you cave current adjustment (like the philps head trimpot on A4988 stepper drivers) it may pay to make sure its set right too. Too much current may also cause overshoot. I had both problems at one point!
I dial in my current using pronterface. I set Z speed to 250 and tell it to go up or down 100mm and adjust current till it starts sounding bad (low pitch) and stalling, then turn it back up till its sounding better (mid-high pitch) and not stalling. I also like to check the driver boards temp while doing this. If its over 80-100c you need a fan or heatsink, or you should lube your lead-screws.. I'm running current just over halfway and it sits around 70-80c, which is boarderline, I need a fan before summer gets here (Australia)


If you home mid print and it goes back up too far. It could be acceleration. Although I wouldn't think it would go as far as you are describing.

I'm thinking you may want to look for Z offset. There are a few places you can tell the printer to offset an axis a set distance from home before it prints anything.

There are offset setting in the printer tab of slic3r. Probably not your problem if various slicing programs do the same thing.

You can check to see if there is Z ofset in the firmware using pronterface. when you conect to the printer. check the firmware report you get after connecting. Look for the line that says:

echo:Home offset (mm)
echo:M206 X0.00 Y0.00 Z0.00 <- make sure Z is 0.00.

If Z in not 0.00 thats your problem. I just had a look and a google, and I'm not sure where in the firmware you set it..
I tried sending an M206 Z10 comand, hoping for Z to home then lift 10mm, but it just homed and stayed there. So clearly I'm in over my head at this point.

May need help from someone better with code/Marlin (not my strong point). It may be the bit just above movement setting which is normally commented out...

/ @section homing

// The center of the bed is at (X=0, Y=0)
//#define BED_CENTER_AT_0_0

// Manually set the home position. Leave these undefined for automatic settings.
// For DELTA this is the top-center of the Cartesian print volume.
//#define MANUAL_X_HOME_POS 0
//#define MANUAL_Y_HOME_POS 0
//#define MANUAL_Z_HOME_POS 0 // Distance between the nozzle to printbed after homing

// Use "Z Safe Homing" to avoid homing with a Z probe outside the bed area.
//
// With this feature enabled:
//
// - Allow Z homing only after X and Y homing AND stepper drivers still enabled.
// - If stepper drivers time out, it will need X and Y homing again before Z homing.
// - Move the Z probe (or nozzle) to a defined XY point before Z Homing when homing all axes (G28).
// - Prevent Z homing when the Z probe is outside bed area.
//#define Z_SAFE_HOMING



Google is also suggesting your Anet i3 may have auto bed levelling?? If that’s the case there are more offsets in the auto bed levelling section in config.h. Even if you don't have auto levelling, may pay to check its not turned on in firmware.


Sorry I cant offer more help. Hopefully you can get closer to identifying the problem now smiling smiley
Sorry, only registered users may post in this forum.

Click here to login