Re: Folger Tech Kossel Delta 2020 Full 3D Printer Kit w/Auto-Level May 07, 2015 10:47AM |
Registered: 8 years ago Posts: 309 |
Re: Folger Tech Kossel Delta 2020 Full 3D Printer Kit w/Auto-Level May 07, 2015 12:06PM |
Registered: 8 years ago Posts: 309 |
Re: Folger Tech Kossel Delta 2020 Full 3D Printer Kit w/Auto-Level May 07, 2015 02:29PM |
Registered: 8 years ago Posts: 24 |
Re: Folger Tech Kossel Delta 2020 Full 3D Printer Kit w/Auto-Level May 07, 2015 08:04PM |
Registered: 8 years ago Posts: 9 |
Re: Folger Tech Kossel Delta 2020 Full 3D Printer Kit w/Auto-Level May 07, 2015 09:38PM |
Registered: 8 years ago Posts: 24 |
Re: Folger Tech Kossel Delta 2020 Full 3D Printer Kit w/Auto-Level May 07, 2015 10:53PM |
Registered: 8 years ago Posts: 11 |
Re: Folger Tech Kossel Delta 2020 Full 3D Printer Kit w/Auto-Level May 08, 2015 02:16AM |
Registered: 8 years ago Posts: 309 |
Re: Folger Tech Kossel Delta 2020 Full 3D Printer Kit w/Auto-Level May 08, 2015 09:25AM |
Registered: 8 years ago Posts: 30 |
Quote
bluesmike
I downloaded and printed the 3D Benchy - Now to begin troubleshooting my print. Here's the pic of both sides. When you print if you don't change the layout it faces with the bow pointing towards the right center. As you can see everything printed on my XY front quadrant printed very rough. Any thoughts on what would cause this:
Re: Folger Tech Kossel Delta 2020 Full 3D Printer Kit w/Auto-Level May 08, 2015 10:20AM |
Registered: 8 years ago Posts: 30 |
Quote
thevisad
Spent some time tweaking the config files for Marlin 1.0.3 dev for the Folgertech. Ended up going back to the 4988 drivers, the 8825 seem way too twitchy in the printer right now and I need more information on the motors. Spent all evening getting this tweaked and the bugs worked out. Have not attempted to print anything on it yet, still not for the faint of heart.
...
// fluff #define CUSTOM_MACHINE_NAME "Deltabot" // delta kinematics input #define DELTA_DIAGONAL_ROD 232.0 // mm, yes I screwed up cutting the rods #define DELTA_SMOOTH_ROD_OFFSET 178.0 // mm, I suspect this needs to be remeasured #define DELTA_EFFECTOR_OFFSET 25.0 // mm #define DELTA_CARRIAGE_OFFSET 12.0 // mm #define DELTA_PRINTABLE_RADIUS 76.0 // mm, 152/2 #define TEMP_SENSOR_BED 1 #define X_MIN_POS -DELTA_PRINTABLE_RADIUS #define Y_MIN_POS -DELTA_PRINTABLE_RADIUS #define Z_MIN_POS 0 #define X_MAX_POS DELTA_PRINTABLE_RADIUS #define Y_MAX_POS DELTA_PRINTABLE_RADIUS #define Z_MAX_POS MANUAL_Z_HOME_POS // define grid area for bed levelling #define DELTA_PROBABLE_RADIUS (DELTA_PRINTABLE_RADIUS - 10) #define LEFT_PROBE_BED_POSITION -DELTA_PROBABLE_RADIUS #define RIGHT_PROBE_BED_POSITION DELTA_PROBABLE_RADIUS #define FRONT_PROBE_BED_POSITION -DELTA_PROBABLE_RADIUS #define BACK_PROBE_BED_POSITION DELTA_PROBABLE_RADIUS // offset from the nozzle to the contact point of the z-probe switch just before switch closes #define X_PROBE_OFFSET_FROM_EXTRUDER 22 // Probe on: -left +right #define Y_PROBE_OFFSET_FROM_EXTRUDER 10 // Probe on: -front +behind #define Z_PROBE_OFFSET_FROM_EXTRUDER -6.2 // -below (always!) // more kinematics settings #define MANUAL_Z_HOME_POS 253.9 // mm, I suspect this needs to be remeasured #define DEFAULT_AXIS_STEPS_PER_UNIT {189/2.25, 189/2.25, 189/2.25, 100} // I suspect this data, but have not done enough research yet // Define some material extruder and bed temperatures #define PLA_PREHEAT_HOTEND_TEMP 210 #define PLA_PREHEAT_HPB_TEMP 65 #define ABS_PREHEAT_HOTEND_TEMP 240 #define ABS_PREHEAT_HPB_TEMP 100 // lcd controller support. #define SDSUPPORT // Enable SD Card Support in Hardware Console #define REPRAP_DISCOUNT_SMART_CONTROLLER // enable my 2004 RepRap Smart Controller LCD // settings for the z-probe servo #define SERVO_ENDSTOP_ANGLES {0,0,0,0,5,120} // Axis Extend and Retract angles are the last two entries
Re: Folger Tech Kossel Delta 2020 Full 3D Printer Kit w/Auto-Level May 08, 2015 12:02PM |
Registered: 8 years ago Posts: 309 |
Quote
Djkingsley
Quote
thevisad
Spent some time tweaking the config files for Marlin 1.0.3 dev for the Folgertech. Ended up going back to the 4988 drivers, the 8825 seem way too twitchy in the printer right now and I need more information on the motors. Spent all evening getting this tweaked and the bugs worked out. Have not attempted to print anything on it yet, still not for the faint of heart.
...
thevisad
I also went and upgraded the marlin firmware, below are the configure.h setting that I have for the marlin 1.0.3 dev (04/24/2015) I am happy with the reduced memory foot print for this version of the firmware, but I still have some questions related to my configuration that I have highlighted in the comments below, some are simply re-measurements of my printer, but the DEFAULT_AXIS_STEPS_PER_UNIT setting I need to understand where the data comes from better. I do have the 20 tooth gears and the original driver boards set to 1/16 steps with the vref's set correctly.
// fluff #define CUSTOM_MACHINE_NAME "Deltabot" // delta kinematics input #define DELTA_DIAGONAL_ROD 232.0 // mm, yes I screwed up cutting the rods #define DELTA_SMOOTH_ROD_OFFSET 178.0 // mm, I suspect this needs to be remeasured #define DELTA_EFFECTOR_OFFSET 25.0 // mm #define DELTA_CARRIAGE_OFFSET 12.0 // mm #define DELTA_PRINTABLE_RADIUS 76.0 // mm, 152/2 #define TEMP_SENSOR_BED 1 #define X_MIN_POS -DELTA_PRINTABLE_RADIUS #define Y_MIN_POS -DELTA_PRINTABLE_RADIUS #define Z_MIN_POS 0 #define X_MAX_POS DELTA_PRINTABLE_RADIUS #define Y_MAX_POS DELTA_PRINTABLE_RADIUS #define Z_MAX_POS MANUAL_Z_HOME_POS // define grid area for bed levelling #define DELTA_PROBABLE_RADIUS (DELTA_PRINTABLE_RADIUS - 10) #define LEFT_PROBE_BED_POSITION -DELTA_PROBABLE_RADIUS #define RIGHT_PROBE_BED_POSITION DELTA_PROBABLE_RADIUS #define FRONT_PROBE_BED_POSITION -DELTA_PROBABLE_RADIUS #define BACK_PROBE_BED_POSITION DELTA_PROBABLE_RADIUS // offset from the nozzle to the contact point of the z-probe switch just before switch closes #define X_PROBE_OFFSET_FROM_EXTRUDER 22 // Probe on: -left +right #define Y_PROBE_OFFSET_FROM_EXTRUDER 10 // Probe on: -front +behind #define Z_PROBE_OFFSET_FROM_EXTRUDER -6.2 // -below (always!) // more kinematics settings #define MANUAL_Z_HOME_POS 253.9 // mm, I suspect this needs to be remeasured #define DEFAULT_AXIS_STEPS_PER_UNIT {189/2.25, 189/2.25, 189/2.25, 100} // I suspect this data, but have not done enough research yet // Define some material extruder and bed temperatures #define PLA_PREHEAT_HOTEND_TEMP 210 #define PLA_PREHEAT_HPB_TEMP 65 #define ABS_PREHEAT_HOTEND_TEMP 240 #define ABS_PREHEAT_HPB_TEMP 100 // lcd controller support. #define SDSUPPORT // Enable SD Card Support in Hardware Console #define REPRAP_DISCOUNT_SMART_CONTROLLER // enable my 2004 RepRap Smart Controller LCD // settings for the z-probe servo #define SERVO_ENDSTOP_ANGLES {0,0,0,0,5,120} // Axis Extend and Retract angles are the last two entries
Re: Folger Tech Kossel Delta 2020 Full 3D Printer Kit w/Auto-Level May 08, 2015 12:31PM |
Registered: 8 years ago Posts: 30 |
Quote
thevisad
Thanks for that! You answered one of the problems I had, I was putting the full bed size (152) instead of the actual radius of 76. Other then the stuff below, all of your settings look close to or similar to mine.
According to this site it uses this formula for steps_per_mm = (motor_steps_per_rev * driver_microstep) / (belt_pitch * pulley_number_of_teeth)
motor_steps_per_rev = 360 / 1.8 = 200
GT2 belt is 2mm pitch not sure where they got 2.25 which is the belt pitch in that equation I assume (http://reprap.org/wiki/Belt)
In our case it should be steps are equal to 80 = (200 * 18) / ( 2 * 20) which should make this {80, 80, 80, 100} I am not sure why they have been utilizing 84 (189/2.25 )
I am considering getting some .9 motors, which would increase the resolution to double {160, 160, 160, 100} and if I can get the 8825 working that would double again to {320, 320, 320, 100} or 6.25 micron size.
For this one #define MANUAL_Z_HOME_POS 253.9 <- this will change when you change the the above. I bought the 40 inch ruler at Harbor Freight and measured it at 256 and set that as my default instead of 253.9 and then leveled from that.
Re: Folger Tech Kossel Delta 2020 Full 3D Printer Kit w/Auto-Level May 08, 2015 12:39PM |
Registered: 8 years ago Posts: 309 |
Re: Folger Tech Kossel Delta 2020 Full 3D Printer Kit w/Auto-Level May 08, 2015 12:46PM |
Registered: 8 years ago Posts: 30 |
Quote
thevisad
Created a github repository which will contain all of the changes we come across here and I will try to keep it in sync with the official repo. Those who wish to use it or update it with me, feel free to contribute.
TheVisad
Re: Folger Tech Kossel Delta 2020 Full 3D Printer Kit w/Auto-Level May 08, 2015 03:57PM |
Registered: 8 years ago Posts: 30 |
Quote
Djkingsley
Quote
thevisad
Created a github repository which will contain all of the changes we come across here and I will try to keep it in sync with the official repo. Those who wish to use it or update it with me, feel free to contribute.
TheVisad
Beat me to it, thanks, one less thing for me to do.
Re: Folger Tech Kossel Delta 2020 Full 3D Printer Kit w/Auto-Level May 09, 2015 12:39AM |
Registered: 8 years ago Posts: 309 |
Quote
Djkingsley
Quote
Djkingsley
Quote
thevisad
Created a github repository which will contain all of the changes we come across here and I will try to keep it in sync with the official repo. Those who wish to use it or update it with me, feel free to contribute.
TheVisad
Beat me to it, thanks, one less thing for me to do.
There is an issue with the ENABLE_AUTO_BED_LEVELING, in SanityCheck.h near line 157 the conditionals need to be adjusted for a delta printer with xy=0 at the center. I don't have time to look at it right now so I turned off the auto level flag in my clone repository.
Re: Folger Tech Kossel Delta 2020 Full 3D Printer Kit w/Auto-Level May 09, 2015 12:44PM |
Registered: 8 years ago Posts: 30 |
Quote
thevisad
Quote
Djkingsley
Quote
Djkingsley
Quote
thevisad
Created a github repository which will contain all of the changes we come across here and I will try to keep it in sync with the official repo. Those who wish to use it or update it with me, feel free to contribute.
TheVisad
Beat me to it, thanks, one less thing for me to do.
There is an issue with the ENABLE_AUTO_BED_LEVELING, in SanityCheck.h near line 157 the conditionals need to be adjusted for a delta printer with xy=0 at the center. I don't have time to look at it right now so I turned off the auto level flag in my clone repository.
Hmm, look to verify you have the z sensor probe enabled, I uploaded the version I put in the repo and it loaded fine. Just finished a 3 hour print on 1.0.3 and ... wow ...
compared to the previous part
Re: Folger Tech Kossel Delta 2020 Full 3D Printer Kit w/Auto-Level May 10, 2015 01:21AM |
Registered: 8 years ago Posts: 309 |
Quote
Djkingsley
That's a huge improvement, similar to what I saw between the version supplied by Folger and the 1.0.3 from 4/24/15. I tried version from your repro last night, the steps per mm fix makes another improvement in the right direction for me. My problem was that I don't have enough practice with ABS yet and I am printing benchy in ABS and it warped and pulled loose from the bed about an hour in.
I am also getting ooze that is leaving a lot more strings on my pieces than I would like, if you don't mind me asking how are you configuring your code/printer to get such clean prints.
I will check that I had the z probe enabled again, like I said I ran out of time to investigate the compile error I had.
Re: Folger Tech Kossel Delta 2020 Full 3D Printer Kit w/Auto-Level May 10, 2015 09:04AM |
Registered: 8 years ago Posts: 30 |
Quote
thevisad
I dumped pronterface/slicer and went with Simplify3d, works great. That made some improvements, but I believe I have everything in it set to the defaults on normal.
Here are my benchy prints on 1.0.3, I am going to switch over to a .2 tip and see if I can get this to print in a little finer detail. The girlfriend thought it was cute and wanted to see if it would float.
]
Re: Folger Tech Kossel Delta 2020 Full 3D Printer Kit w/Auto-Level May 10, 2015 12:11PM |
Registered: 8 years ago Posts: 309 |
Quote
Djkingsley
Quote
thevisad
I dumped pronterface/slicer and went with Simplify3d, works great. That made some improvements, but I believe I have everything in it set to the defaults on normal.
Here are my benchy prints on 1.0.3, I am going to switch over to a .2 tip and see if I can get this to print in a little finer detail. The girlfriend thought it was cute and wanted to see if it would float.
]
That print is nice. I will see if one of my office work mates can generate the gcode with simplify3d and try to print the file. I have been waffling one buying it, I am partial to open source code as a developer myself.
Re: Folger Tech Kossel Delta 2020 Full 3D Printer Kit w/Auto-Level May 11, 2015 09:18AM |
Registered: 8 years ago Posts: 24 |
Re: Folger Tech Kossel Delta 2020 Full 3D Printer Kit w/Auto-Level May 11, 2015 10:48AM |
Registered: 8 years ago Posts: 309 |
Quote
Wittmason
BIG PROPS to @Visad!!
I had tried the Folger based Marlin firmware for most of the day yesterday and it was marginal at best. My Z axis kept acting up nothing was doing what it was supposed to. So I decided to load Visad firmware with my changes and VOILA!!! I have a working well machine. The first firmware borked my heatbed fuse (I believe) so I don't have bed heating but its seeming to work so far.
My question is how have you all gotten over extruder issues. I have my voltage set to .65 mv and it is still skipping quite a bit.
Re: Folger Tech Kossel Delta 2020 Full 3D Printer Kit w/Auto-Level May 11, 2015 11:17AM |
Registered: 8 years ago Posts: 24 |
Re: Folger Tech Kossel Delta 2020 Full 3D Printer Kit w/Auto-Level May 11, 2015 12:13PM |
Registered: 8 years ago Posts: 309 |
Quote
Wittmason
Haha yeh the mechanical fixes were from me. Funny I was referred to that. This is more or less not enough torque from the motor.
I eyed that extruder on Thingiverse for awhile. I think I'll try that.
Re: Folger Tech Kossel Delta 2020 Full 3D Printer Kit w/Auto-Level May 11, 2015 01:44PM |
Registered: 8 years ago Posts: 15 |
Re: Folger Tech Kossel Delta 2020 Full 3D Printer Kit w/Auto-Level May 11, 2015 02:10PM |
Registered: 8 years ago Posts: 24 |
Re: Folger Tech Kossel Delta 2020 Full 3D Printer Kit w/Auto-Level May 12, 2015 02:22AM |
Registered: 8 years ago Posts: 43 |
Quote
rotten_carrot
I realise that it has been discussed a couple of times before but I'm still somewhat undecided in my mind as to whether to cut my rods to 250mm centre hole to centre hole or if the consensus is to cut the carbon fibre itself to 250mm? Anyone's experience/opinions on this specific detail would be gratefully received - even if it is a different length that is suggested
Re: Folger Tech Kossel Delta 2020 Full 3D Printer Kit w/Auto-Level May 12, 2015 06:34AM |
Registered: 8 years ago Posts: 63 |
Quote
thevisad
Quote
Wittmason
Haha yeh the mechanical fixes were from me. Funny I was referred to that. This is more or less not enough torque from the motor.
I eyed that extruder on Thingiverse for awhile. I think I'll try that.
Here is my remix of the item. I removed the mounting ear on it as it's no longer needed and get's in the way. I left the motor mounted on the frame using their mount.
Re: Folger Tech Kossel Delta 2020 Full 3D Printer Kit w/Auto-Level May 12, 2015 07:25AM |
Registered: 8 years ago Posts: 4 |
Quote
newline
Quote
jculver09
Quote
newline
I heard back from Derek @ robotdigg... "I am afraid we use a corner idler."
I haven't heard back yet on where to get them or how much.
Sure wish the robotdigg web store had said that this was required, or at least had a picture that showed it
In that image it looks as though the idler rides on bearings which I assume are pressed into the aluminum (I see no other way of affixing them in the image).
Have you measured the holes? My bet is you could find the bearings that fit the aluminum and mount your own shaft and bearings instead of their idler. I would avoid their idler because the flanges are almost guaranteed not to align with where your belt will want to ride (I could be wrong though), this will cause the belt to slowly shave itself away on the flange, over time causing the belt to fail.
My fix would be to fit the bearings into the aluminum (bearings will probably be 608 or 624 or something else common in the reprap world). Get a bolt long enough and large enough to match the ID of the bearing, and throw a stack of bearings on the bolt so that no matter where the belt wants to ride it will be on smooth bearing, no gaps, no flanges, no problems.
The two holes next to the idle make me think the whole assembly could be held in with a plate that is not shown (rather than press-fit bearings). If you go the idler route I would ask more questions about how it is held in place (additional hardware/parts).
The holes are 10mm
Re: Folger Tech Kossel Delta 2020 Full 3D Printer Kit w/Auto-Level May 12, 2015 09:24AM |
Registered: 8 years ago Posts: 24 |
Re: Folger Tech Kossel Delta 2020 Full 3D Printer Kit w/Auto-Level May 12, 2015 10:19AM |
Registered: 8 years ago Posts: 56 |
I used the acrylic mount that came from Folger, so the mounting ears are superfluous. (The rubber band goes to a clip on the wire loom to the effector)Quote
mmcginnis9272
...extruder with the mounting ear cut off?