Re: Migbot Prusa i3 Unofficial Support Thread February 15, 2016 07:46AM |
Registered: 9 years ago Posts: 111 |
Quote
Ax
Quote
veaceonee
I have a developing issue that I hope you can help me with.
I have been beautifully for a while now. Now all of a sudden the rafts won't separate from the prints, (yes I use rafts on PLA prints so I don;t get blue tape mess on the bottom of the items).
I print off the SD card using the same files. Printed an item couple days ago, wonderful. Printed the same item today, and the raft wont separate. Any suggestions as to what is going on?
Thanks in advance.
That's more than likely a filament issue over a printer issue. Check the filament diameter would be the first step..
Re: Migbot Prusa i3 Unofficial Support Thread February 15, 2016 09:25AM |
Registered: 8 years ago Posts: 6 |
Re: Migbot Prusa i3 Unofficial Support Thread February 15, 2016 10:59AM |
Registered: 9 years ago Posts: 269 |
Quote
InsaneCheese
A week later and I've solved my issue. Turns out it was the extruder/hotend being all shonky. Got a hexagon hotend + all metal extruder and it seems to be spitting out prints nicely, esp I've managed to get the 20mn cube to print and gotten inaccuracy down to .2mm on all axis. Mind you I had to turn my z speed down to 1 mm/s or it seemed to bind up occasionally.
Printed Marvin and he seemed to come out nice, except for some weird what I'm assuming to be adhesion issues on his feet. I noticed it on marvin first, but it was also on my last cube, but my first cube (on the left) you can see the layers? Any ideas?
The hexagon is a bit to long to work with the default bracket for the auto level sensor, so I'm going to print up one that's longer and see if I can get auto levelling going.
Re: Migbot Prusa i3 Unofficial Support Thread February 15, 2016 11:01AM |
Registered: 9 years ago Posts: 269 |
Re: Migbot Prusa i3 Unofficial Support Thread February 15, 2016 03:03PM |
Registered: 8 years ago Posts: 9 |
Re: Migbot Prusa i3 Unofficial Support Thread February 15, 2016 03:17PM |
Registered: 9 years ago Posts: 269 |
Quote
pRO84
Just found this thread, a lot of good info. TONS of pages to look through.
Today I changed my firmware to Ax’s configuration file, hoping it would fix some of the issues I had when I originally put my printer together a couple months ago. Unfortunately it did not =(
1. I can NOT get my extruder to begin the print centered on the build plate.
2. Unless I set the software end stop limits to false (#define min_software_endstops false . #define max_software_endstops false) the printer essentially truncates my prints. I’m pretty sure the extruder starting towards the end of the build plate exacerbates the truncation issue.
With the stock firmware, I had my start Gcode manually move close to the center and start the print, which had me printing plenty of things but I had to be careful not to print anywhere close to my bed limits or it would go off the side.
With the same G code now, it doesn’t even travel to the center.
G21 ; mm
G90 ; Absolute pos
G28 ; home all
G1 E10 F90; extrude 10 mm of filament
g1 X100.0 Y60.0 Z2.0 E0.0 ; move to center
g1 z0.0
M117 Goooo
Hope someone can help. =/
// The position of the homing switches #define MANUAL_HOME_POSITIONS // If defined, MANUAL_*_HOME_POS below will be used //#define BED_CENTER_AT_0_0 // If defined, the center of the bed is at (X=0, Y=0) // Manual homing switch locations: // For deltabots this means top and center of the Cartesian print volume. #if ENABLED(MANUAL_HOME_POSITIONS) #define MANUAL_X_HOME_POS -17 #define MANUAL_Y_HOME_POS -41 #define MANUAL_Z_HOME_POS 0 //#define MANUAL_Z_HOME_POS 402 // For delta: Distance between nozzle and print surface after homing. #endif
Re: Migbot Prusa i3 Unofficial Support Thread February 15, 2016 03:54PM |
Registered: 8 years ago Posts: 9 |
Re: Migbot Prusa i3 Unofficial Support Thread February 15, 2016 08:29PM |
Registered: 8 years ago Posts: 9 |
Re: Migbot Prusa i3 Unofficial Support Thread February 15, 2016 09:02PM |
Registered: 14 years ago Posts: 50 |
Re: Migbot Prusa i3 Unofficial Support Thread February 15, 2016 09:03PM |
Registered: 9 years ago Posts: 269 |
Re: Migbot Prusa i3 Unofficial Support Thread February 15, 2016 09:25PM |
Registered: 8 years ago Posts: 9 |
Re: Migbot Prusa i3 Unofficial Support Thread February 15, 2016 09:41PM |
Registered: 14 years ago Posts: 50 |
Re: Migbot Prusa i3 Unofficial Support Thread February 15, 2016 10:28PM |
Registered: 14 years ago Posts: 50 |
Re: Migbot Prusa i3 Unofficial Support Thread February 16, 2016 08:56PM |
Registered: 8 years ago Posts: 9 |
Re: Migbot Prusa i3 Unofficial Support Thread February 16, 2016 10:32PM |
Registered: 9 years ago Posts: 111 |
Re: Migbot Prusa i3 Unofficial Support Thread February 17, 2016 08:10PM |
Registered: 8 years ago Posts: 9 |
Quote
veaceonee
Quote
pRO84
Thanks for the file. Unfortunately, same result as before. I have no idea whats going on. I tried tweaking a few things, but have no more time tonight to play around. =T
Just out of curiosity, what are the pot voltages for the steppers at?
Re: Migbot Prusa i3 Unofficial Support Thread February 17, 2016 08:39PM |
Registered: 14 years ago Posts: 50 |
Re: Migbot Prusa i3 Unofficial Support Thread February 17, 2016 09:34PM |
Registered: 8 years ago Posts: 9 |
Quote
gotswrv
Copied right outta slic3r
M140 S112 ; set bed temperature doesnt wait
M104 S240 ; set extrude temperature doesnt wait
G91
G1 Z10 F400
G90
G28 X0 Y0 ; home axes
G28 Z0
G1 Z20 F1600
G1 X50 Y50 F3000
M190 S112; set and wait bed temperature
M104 S242 ;doesnt wait extruder
G1 Z 1 F800
M109 S242 ; set and wait for extruder temperature to be reached
My XY position was 110,110 to verify centering position, but I found that it might drool a little bit before it was printing. this is fine from outside the print area, not in the center of the bed.
Re: Migbot Prusa i3 Unofficial Support Thread February 17, 2016 09:48PM |
Registered: 14 years ago Posts: 50 |
Re: Migbot Prusa i3 Unofficial Support Thread February 18, 2016 05:26PM |
Registered: 9 years ago Posts: 269 |
Re: Migbot Prusa i3 Unofficial Support Thread February 18, 2016 09:13PM |
Registered: 9 years ago Posts: 31 |
Quote
Ax
So, quick update, I have the Marlin 1.1 firmware for the Large bed with auto-levelling dead on now. Also for those of you with Auto Levelling, you don't need to use the springs so you can clamp the bed down tight, if you saw my earlier video, I just had it bolted off. I've now created this. Print 4, bolt your bed off and you'll find Auto levelling will work a lot better.
Re: Migbot Prusa i3 Unofficial Support Thread February 19, 2016 02:37AM |
Registered: 9 years ago Posts: 269 |
Quote
Canadian Geek
Quote
Ax
So, quick update, I have the Marlin 1.1 firmware for the Large bed with auto-levelling dead on now. Also for those of you with Auto Levelling, you don't need to use the springs so you can clamp the bed down tight, if you saw my earlier video, I just had it bolted off. I've now created this. Print 4, bolt your bed off and you'll find Auto levelling will work a lot better.
What sensor are you using? I've tired of the one that came with it.
Jeff
Re: Migbot Prusa i3 Unofficial Support Thread February 21, 2016 04:57PM |
Registered: 9 years ago Posts: 269 |
M851 Z-0.8 M500
Re: Migbot Prusa i3 Unofficial Support Thread February 24, 2016 11:55AM |
Registered: 9 years ago Posts: 17 |
Re: Migbot Prusa i3 Unofficial Support Thread February 24, 2016 12:28PM |
Registered: 8 years ago Posts: 11 |
Re: Migbot Prusa i3 Unofficial Support Thread February 24, 2016 12:46PM |
Registered: 9 years ago Posts: 20 |
Quote
Ax
OK, sorry for the delay on the firmware, but both Marlin 1.1 large and small bed auto level configs are up on the repo, both are tested, work well and print centrally.
All 1.1 firmware has EEPROM enabled, this means that those with Auto Level can set the Z offset with the following:
Re: Migbot Prusa i3 Unofficial Support Thread February 24, 2016 02:19PM |
Registered: 9 years ago Posts: 269 |
Quote
CAlleman
Quote
Ax
OK, sorry for the delay on the firmware, but both Marlin 1.1 large and small bed auto level configs are up on the repo, both are tested, work well and print centrally.
All 1.1 firmware has EEPROM enabled, this means that those with Auto Level can set the Z offset with the following:
Ax, thank you so much for this! I uploaded it to my Migbot, did a PID autotune, and quick e-step calibration and it works like a dream - It's printing waaaaay nicer than any of the tweaks I had going before. Only thing i need to change was the X offset from 5 to 15; now it's printing dead center.
Looking forward to any future updates you release, awesome work!
Re: Migbot Prusa i3 Unofficial Support Thread February 25, 2016 05:40AM |
Registered: 9 years ago Posts: 17 |
Re: Migbot Prusa i3 Unofficial Support Thread February 25, 2016 09:37AM |
Registered: 14 years ago Posts: 50 |
Re: Migbot Prusa i3 Unofficial Support Thread February 25, 2016 09:41AM |
Registered: 14 years ago Posts: 50 |