Re: Folger Prusa i3 Kit from ebay November 07, 2014 10:46AM |
Registered: 10 years ago Posts: 208 |
Quote
NukedWorker
Ok, so I had some time over a few days to get the extruder apart. Interesting to watch it fail in action...
Video to my patience test
So when I noticed it seemed to catch on the set screw, I set out to turn it around, and for the second time, had to go shopping for a hex driver (1/16) that wasn't in my collection (the last time it was 1.5 mm). Don't get me wrong, I like tools, but sheesh (this time I got a monster set, regular $28, on for $13 at Canadian Tire). Unfortunately it didn't seem to be enough. As soon as I introduce the filament, it still does a jig back and forth.
With it open to reduce any added friction, I played with the v-ref a little, ranging from 0.35v all the way up to 0.5v. With no change (so I went back to 0.35v as it seemed to be the most valid based on other people's posts). I will try again when I've chilled a bit (I might just be bleary eyed). Is this a fair assessment for my v-ref?
Could it be something in my code?
Also, I'm wondering if I might have to drill out the channel a little as it seems a bit tight. I know some people have had to make some alterations to different parts of their kits. Has anyone had to go this far yet?
Thanks again for the input.
Re: Folger Prusa i3 Kit from ebay November 07, 2014 11:54AM |
Registered: 9 years ago Posts: 36 |
Quote
jjbunn
Quote
Wpflum
I remembered reading somewhere that putting the endstop headers on backwards could blow the regulator I'm not sure is relevant anymore as the post was from last year. Could that have happened to your board?
It's possible, although I was quite careful about polarity when wiring up. I have another Arduino Mega that I can swap in, to confirm that it is indeed the Mega's regulator that is the problem.
Re: Folger Prusa i3 Kit from ebay November 07, 2014 12:19PM |
Registered: 10 years ago Posts: 19 |
Re: Folger Prusa i3 Kit from ebay November 08, 2014 09:06PM |
Registered: 12 years ago Posts: 76 |
Re: Folger Prusa i3 Kit from ebay November 09, 2014 02:01PM |
Registered: 10 years ago Posts: 208 |
Re: Folger Prusa i3 Kit from ebay November 09, 2014 06:00PM |
Registered: 10 years ago Posts: 14 |
Quote
Waltermixx
I noticed in the video that even when the filament is going through the extruder, the stepper seems to for lack of a better way to put it: take two steps forward and 1 back, so the end result is the filament moves forward, but it still seems to be "stuttering" its way through... i watch the video closely and the motion of the stepper does not seem like a smooth forward motion. I have not ever watched mine so I am not sure if it does the same thing, but I did find the motion curious.... have you tried to swap the motor drivers with another axis?
Re: Folger Prusa i3 Kit from ebay November 09, 2014 06:19PM |
Registered: 10 years ago Posts: 208 |
Re: Folger Prusa i3 Kit from ebay November 09, 2014 07:04PM |
Registered: 12 years ago Posts: 76 |
Re: Folger Prusa i3 Kit from ebay November 09, 2014 09:16PM |
Registered: 10 years ago Posts: 19 |
Re: Folger Prusa i3 Kit from ebay November 10, 2014 05:22AM |
Registered: 10 years ago Posts: 14 |
Re: Folger Prusa i3 Kit from ebay November 10, 2014 09:39AM |
Registered: 10 years ago Posts: 208 |
Re: Folger Prusa i3 Kit from ebay November 10, 2014 12:28PM |
Registered: 10 years ago Posts: 19 |
Re: Folger Prusa i3 Kit from ebay November 10, 2014 12:48PM |
Registered: 12 years ago Posts: 76 |
Re: Folger Prusa i3 Kit from ebay November 10, 2014 01:20PM |
Registered: 10 years ago Posts: 208 |
Re: Folger Prusa i3 Kit from ebay November 10, 2014 10:02PM |
Registered: 9 years ago Posts: 5 |
//// 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 {79.7, 80.3, 4995, 90} // default steps per unit for Ultimaker #define DEFAULT_MAX_FEEDRATE {120, 120, 2, 22} // (mm/sec) #define DEFAULT_MAX_ACCELERATION {3000, 3000, 100, 3000} // 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 1000 // X, Y, Z and E max acceleration in mm/s^2 for printing moves #define DEFAULT_RETRACT_ACCELERATION 1000 // X, Y, Z and E max acceleration in mm/s^2 for retracts // Offset of the extruders (uncomment if using more than one and relying on firmware to position when changing). // The offset has to be X=0, Y=0 for the extruder 0 hotend (default extruder). // For the other hotends it is their distance from the extruder 0 hotend. // #define EXTRUDER_OFFSET_X {0.0, 20.00} // (in mm) for each extruder, offset of the hotend on the X axis // #define EXTRUDER_OFFSET_Y {0.0, 5.00} // (in mm) for each extruder, offset of the hotend on the Y axis // 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)
Re: Folger Prusa i3 Kit from ebay November 10, 2014 10:21PM |
Registered: 10 years ago Posts: 19 |
Re: Folger Prusa i3 Kit from ebay November 10, 2014 10:25PM |
Registered: 9 years ago Posts: 36 |
Re: Folger Prusa i3 Kit from ebay November 11, 2014 12:09AM |
Registered: 9 years ago Posts: 5 |
Re: Folger Prusa i3 Kit from ebay November 11, 2014 12:17AM |
Registered: 10 years ago Posts: 208 |
Re: Folger Prusa i3 Kit from ebay November 11, 2014 12:31AM |
Registered: 9 years ago Posts: 5 |
Re: Folger Prusa i3 Kit from ebay November 11, 2014 01:16AM |
Registered: 9 years ago Posts: 36 |
Re: Folger Prusa i3 Kit from ebay November 11, 2014 10:46AM |
Registered: 12 years ago Posts: 76 |
Re: Folger Prusa i3 Kit from ebay November 11, 2014 12:46PM |
Registered: 9 years ago Posts: 5 |
Re: Folger Prusa i3 Kit from ebay November 11, 2014 12:55PM |
Registered: 10 years ago Posts: 19 |
Re: Folger Prusa i3 Kit from ebay November 11, 2014 01:04PM |
Registered: 9 years ago Posts: 36 |
Quote
spiffydudex
Well, now it seems like I have another issue. The Filament feeder pinches the filament too much and causes it to deform. This is causing the filament to get stuck in the extrusion head.
Due to the design of the feeder, there is no real adjustments. Any ideas? I'll post a picture soon.
Re: Folger Prusa i3 Kit from ebay November 11, 2014 01:09PM |
Registered: 9 years ago Posts: 5 |
Re: Folger Prusa i3 Kit from ebay November 12, 2014 05:06PM |
Registered: 10 years ago Posts: 58 |
Re: Folger Prusa i3 Kit from ebay November 12, 2014 05:20PM |
Registered: 10 years ago Posts: 99 |
Re: Folger Prusa i3 Kit from ebay November 13, 2014 10:00AM |
Registered: 9 years ago Posts: 110 |
Re: Folger Prusa i3 Kit from ebay November 13, 2014 10:19AM |
Registered: 9 years ago Posts: 9 |
Quote
louspinuso
Ok, so my kit arrived last night and I started putting it together. Tonight (stupid employment getting in the way of today fun) I plan on starting with attaching the heat bed and I've been looking around on youtube for videos on getting that soldered up and keep seeing people attaching their own thermistors to the middle of the bed with kapton tape. I've read this thread and then skimmed it for good measure but it looks like the bed with this kit has the thermistor attached and I just need to solder wires to the pads on the bed and that's it. Can someone verify I'm not missing a step here?
Also, are you guys mounting the bed with the component side up or down? I feel like I should put the components down for safety (of the components) reasons but then how do you see the LED that is now on the bottom of the bed?
Thanks for the help.