Re: Auto bed leveling problem
QuoteRoxy You probably are not doing a M502 and M500 pair after uploading the firmware. Marlin uses the setting in the EEPROM if the EEPROM is enabled. You can give it the new settings by doing a M502...
View ArticleRe: How to enable software control for extruder fan in G code?
M106 and M145 give you a lot of control over these things. The code is shown below. #if FAN_COUNT > 0 /** * M106: Set Fan Speed * * S Speed between 0-255 * P Fan index, if more than one fan */...
View ArticleRe: Auto bed leveling problem
I think you are asking "Can I do this using the LCD Panel to control the action?" The answer is: Yes! The EEPROM stuff is at the end of the 'Control Menu' /** * * "Control" submenu * */ static void...
View ArticleG28 w/ABL diagonal movement too fast
I've been struggling trying to find the bit of code inside Marlin that effects the speed of the X/Y movement from X0 Y0 to bed center when running G28. I have an ABL sensor installed and working...
View ArticleRe: G28 w/ABL diagonal movement too fast
In RCBugFix: // X and Y axis travel speed (mm/m) between probes #define XY_PROBE_SPEED 8000 or it could be these lines: // Homing speeds (mm/m) #define HOMING_FEEDRATE_XY (50*60) #define...
View ArticleRe: G28 w/ABL diagonal movement too fast
Thanks stephenrc, I did already try adjusting the "HOMING_FEEDRATES," but these only seem to effect the initial X homing action and the Y homing action (moving X/Y both to 0). And changing the Z...
View ArticleRe: Auto bed leveling problem
QuoteRoxy I think you are asking "Can I do this using the LCD Panel to control the action?" The answer is: Yes! The EEPROM stuff is at the end of the 'Control Menu' /** * * "Control" submenu * */...
View ArticleRe: Auto bed leveling problem
G1 X0 Y0 Z0; Homing X axis, Y axis and set the Z axis to position 0 - offset_Z I would not go to Z=0.0 because if there is any movement you will be rubbing the nozzle against the bed. I pretty much...
View ArticleHELP
So...thermistors. I just finished the last steps of calibrating my custom corexy 3d printer and then... I think the hotend thermistor is broken. When I turn the printer on the Full Graphic Smart...
View Articlemirror prints
my printer is printing everything in mirror I found a solution on the internet to reverse the y motor, and to change your homing to. Gcode g28 home the extruder fine. now I send a g29 Now here is my...
View Articlehooking up lcd smort controller to new marlin issue
im trying to do away with the chinese stuff on my chinese reprap i have bought the smart controller the ramps and a new arduino to start fresh i have downloaded the new and old version of marlin and...
View ArticleRe: mirror prints
Does it home properly? Can you move the nozzle around on the bed with PronterFace?
View ArticleRe: mirror prints
home is working fine ... only with pronterface the Y is working reversed all was working fine in pronterface before I did the changes to solve the mirroring problem!
View ArticleRe: mirror prints
Reversing could be X or Y axis reversed Identify your type of machine Identify where your end stops are On I3 the Bed moves in Y, Y is backwards from what you think. (remember movement is relative to...
View ArticleRe: mirror prints
I have a I3 printer stops are for Z on the right side, Y in the back and for X I use auto bed leveling with servo. all was working fine and correct with printerface before I try to resolve my mirror...
View ArticleRe: mirror prints
unless you have a really weird printer your naming your axis all wrong... For a 3d printer Z is up and down movement, z probes are also up and down. X is left and right Y is back and front so taking...
View ArticleRe: mirror prints
your righ, I was wrong, it's like you told me, X is on the right side, Y in the back and for Z I use auto bed leveling with servo. But what I find strange is that the printer was working fine with...
View ArticleRe: mirror prints
"Now check your direction of moment, X -ve should move head left, X+ve should move head right Y -ve should move bed back, Y +ve should move bed forward Z -ve should move head down, Z +ve should move...
View ArticleRe: mirror prints
ok, done, it's configure like this now,. g28 homeing is working correct :-) now the auto bed leveling is wrong, normal it starts left in the back and will measure 3 points, then come to the middle...
View ArticleRe: mirror prints
This is a educated guess Try setting these back to positive, #define X_PROBE_OFFSET_FROM_EXTRUDER 26 // X offset: -left +right [of the nozzle] #define Y_PROBE_OFFSET_FROM_EXTRUDER 16 // Y offset:...
View Article