Re: Folger Prusa i3 Kit from ebay November 17, 2014 04:45PM |
Registered: 10 years ago Posts: 208 |
Re: Folger Prusa i3 Kit from ebay November 17, 2014 04:59PM |
Registered: 10 years ago Posts: 19 |
Re: Folger Prusa i3 Kit from ebay November 17, 2014 06:05PM |
Registered: 10 years ago Posts: 110 |
Re: Folger Prusa i3 Kit from ebay November 17, 2014 06:14PM |
Registered: 10 years ago Posts: 134 |
Re: Folger Prusa i3 Kit from ebay November 17, 2014 07:49PM |
Registered: 10 years ago Posts: 61 |
Re: Folger Prusa i3 Kit from ebay November 17, 2014 08:01PM |
Registered: 10 years ago Posts: 208 |
Re: Folger Prusa i3 Kit from ebay November 17, 2014 08:11PM |
Registered: 10 years ago Posts: 7 |
Quote
louspinuso
And now, I continue my saga:
I'm posting these things in the hopes that anyone else that has these problems will see this and not make the same mistakes that I made.
When last I posted I had some motors turning in some directions some of the times and was banging my head as to what was going on. After a weekend of thinking about it (had a lot going on so I couldn't really play/test) I thought I'd take a look at some of the configurations on my laptop to make sure that I had all the right software/libraries/etc. I did, so that wasn't the issue so I went on to thought number 2 which was, maybe there was too much force against the motors for them to work. I couldn't wait to get off of work today and get home and try it and that's when I decided to just check to see if my x-axis was going to move first. Got it to move 10 steps to the left, then another, then about 4 or so and it stopped. Let's try going to the right. Nothing. Pronterface read "echo:endstops hit: X:-49.94" (with miniscule increments in that number as I clicked move right). Let's pop the belt off and see what happens. Reset the printer, reconnect, moves 20 x 10 steps to the right and won't go anymore, then 20 x 10 steps to the left and won't go anymore and repeat, over and over and over. WTH!!
Well some of you may remember my issue with the pulley and the filing I had to do to make it fit. Apparently there's a spot where it still sticks. I'm guessing that this causes enough force back on the belt to make the motor think it can't go anymore and sends that endstop signal back. I decided to check on my z axis and I get roughly the same results. I removed the coupling that holds the screws in place and motors work fine so about the only thing I can guess is that either those motors are not strong enough or my rods aren't perfectly parallel I'm going to take 1/2 the printer apart and start putting it together taking care to make more precise measurements and make sure that everything is as straight and square as possible. I haven't tested my Y axis, but I did have a small tightness issue with that pulley as well, though I think it's been resolved and I cut that belt too short so I wound up having to make that belt super tight (possibly causing added stresses on moving parts) to get it to lock in place (I ordered new belts just for this reason so that will be, at the very least, changed).
If anyone has any suggestions on ways I can make sure that I keep all of the pieces square as I put it back together, I'd really appreciate it.
Re: Folger Prusa i3 Kit from ebay November 17, 2014 08:45PM |
Registered: 10 years ago Posts: 61 |
Re: Folger Prusa i3 Kit from ebay November 17, 2014 09:31PM |
Registered: 10 years ago Posts: 61 |
Re: Folger Prusa i3 Kit from ebay November 17, 2014 09:58PM |
Registered: 10 years ago Posts: 110 |
Quote
zorg1179
Quote
louspinuso
And now, I continue my saga:
I'm posting these things in the hopes that anyone else that has these problems will see this and not make the same mistakes that I made.
When last I posted I had some motors turning in some directions some of the times and was banging my head as to what was going on. After a weekend of thinking about it (had a lot going on so I couldn't really play/test) I thought I'd take a look at some of the configurations on my laptop to make sure that I had all the right software/libraries/etc. I did, so that wasn't the issue so I went on to thought number 2 which was, maybe there was too much force against the motors for them to work. I couldn't wait to get off of work today and get home and try it and that's when I decided to just check to see if my x-axis was going to move first. Got it to move 10 steps to the left, then another, then about 4 or so and it stopped. Let's try going to the right. Nothing. Pronterface read "echo:endstops hit: X:-49.94" (with miniscule increments in that number as I clicked move right). Let's pop the belt off and see what happens. Reset the printer, reconnect, moves 20 x 10 steps to the right and won't go anymore, then 20 x 10 steps to the left and won't go anymore and repeat, over and over and over. WTH!!
Well some of you may remember my issue with the pulley and the filing I had to do to make it fit. Apparently there's a spot where it still sticks. I'm guessing that this causes enough force back on the belt to make the motor think it can't go anymore and sends that endstop signal back. I decided to check on my z axis and I get roughly the same results. I removed the coupling that holds the screws in place and motors work fine so about the only thing I can guess is that either those motors are not strong enough or my rods aren't perfectly parallel I'm going to take 1/2 the printer apart and start putting it together taking care to make more precise measurements and make sure that everything is as straight and square as possible. I haven't tested my Y axis, but I did have a small tightness issue with that pulley as well, though I think it's been resolved and I cut that belt too short so I wound up having to make that belt super tight (possibly causing added stresses on moving parts) to get it to lock in place (I ordered new belts just for this reason so that will be, at the very least, changed).
If anyone has any suggestions on ways I can make sure that I keep all of the pieces square as I put it back together, I'd really appreciate it.
The endstop signal will not come from the motor due to resistance. The motor will just keep trying to turn and if they can't, you will hear some clicking/grinding sounds from them. The endtop signal you are getting only comes from the endstop pin on your RAMPs. If nothing is connected they will read as endstop triggered in your software. You have to ensure your min-endstops are connected propperly and if you don't have max-endstops (this kit doesn't), they need to be disabled in yout firmware. I had to do this by setting the max pins in the pins.h file to -1. I'm not sure if this is the only/best method, but it worked for me.
#define X_STEP_PIN 28 #define X_DIR_PIN 63 #define X_ENABLE_PIN 29 #define X_MIN_PIN 47 #define X_MAX_PIN -1 //2 //Max endstops default to disabled "-1", set to commented value to enable. #define Y_STEP_PIN 14 // A6 #define Y_DIR_PIN 15 // A0 #define Y_ENABLE_PIN 39 #define Y_MIN_PIN 48 #define Y_MAX_PIN -1 //15 #define Z_STEP_PIN 31 // A2 #define Z_DIR_PIN 32 // A6 #define Z_ENABLE_PIN 30 // A1 #define Z_MIN_PIN 49 #define Z_MAX_PIN -1
Re: Folger Prusa i3 Kit from ebay November 18, 2014 12:45AM |
Registered: 10 years ago Posts: 110 |
Re: Folger Prusa i3 Kit from ebay November 18, 2014 01:41AM |
Registered: 10 years ago Posts: 110 |
Re: Folger Prusa i3 Kit from ebay November 18, 2014 07:18AM |
Registered: 10 years ago Posts: 134 |
Quote
louspinuso
Ok, so I was giving some thought to my question above and I'm starting to think that Y negative should be moving the bed towards the back if X negative moves the bed to the left, based on a standard Cartesian plane. Which means that when the bed is all the way forward, the endstop at the front should be the max endstop (setting the back right corner of the bed as 0,0,0) and then the position of Y decreases as it goes further back (moving the head into a more negative plotted number). Does this make sense? Or am I getting 2am delirious again?
Re: Folger Prusa i3 Kit from ebay November 18, 2014 08:41AM |
Registered: 10 years ago Posts: 110 |
Quote
Gannicus
Nope, you're absolutely right. Y neg should go back, Y pos to the front.
X pos to the right, X neg to the left, and Z pos up, Z neg down.
If one is going the opposite way, just flip the connection on your ramps.
Re: Folger Prusa i3 Kit from ebay November 18, 2014 11:52AM |
Registered: 10 years ago Posts: 134 |
Quote
louspinuso
Quote
Gannicus
Nope, you're absolutely right. Y neg should go back, Y pos to the front.
X pos to the right, X neg to the left, and Z pos up, Z neg down.
If one is going the opposite way, just flip the connection on your ramps.
Right, so that all seems good so my next question is where do you have your y end stop, front or back? And is it set as a min or max end stop?
Re: Folger Prusa i3 Kit from ebay November 18, 2014 12:18PM |
Registered: 10 years ago Posts: 110 |
Quote
Gannicus
Quote
louspinuso
Quote
Gannicus
Nope, you're absolutely right. Y neg should go back, Y pos to the front.
X pos to the right, X neg to the left, and Z pos up, Z neg down.
If one is going the opposite way, just flip the connection on your ramps.
Right, so that all seems good so my next question is where do you have your y end stop, front or back? And is it set as a min or max end stop?
This is where I've run into my roadblock. LOL
I have my Y endstop on the back. Set to Min in code, and on the ramps pins. Works correctly, however it wasn't yesterday. I changed it to MAX in the code, and on the pins. At that point, it stopped working entirely. Switched it all back, and now works correctly. Go figure right???
My X and Z don't work...AT ALL. Except with the M119 test code in Pronterface.
#define INVERT_E0_DIR false // for direct drive extruder v9 set to true, for geared extruder set to false
#define INVERT_E0_DIR true // for direct drive extruder v9 set to true, for geared extruder set to false
Re: Folger Prusa i3 Kit from ebay November 18, 2014 12:46PM |
Registered: 11 years ago Posts: 477 |
Re: Folger Prusa i3 Kit from ebay November 18, 2014 12:57PM |
Registered: 10 years ago Posts: 134 |
Quote
SteveRoy
As Gannicus posted - for the Y end stop, if it's at the back it's a MIN, if at the front it's a MAX. You need to change the firmware and the position on the RAMPS to suit.
Same with X, if it's on the left it's a MIN, on the right a MAX
Steve
Re: Folger Prusa i3 Kit from ebay November 18, 2014 01:02PM |
Registered: 10 years ago Posts: 57 |
Re: Folger Prusa i3 Kit from ebay November 18, 2014 01:28PM |
Registered: 10 years ago Posts: 110 |
Quote
mikez104
Has anyone had an issue with the linear bearings not moving freely?
As I am building the base and put the linear bearings on the long smooth rods, I find that the bearings wont freely slide on one rod. They grab and it feels like they are binding. I took those bearings off of that rod and put them on the rod on the other side and they move smoothly. I put a micrometer on the rod that inds and find that the rod is a thousandth larger in diameter. I would not think that would make a difference but it does. I've contacted folgertech yesterday via email and through ebay and asked for it to be replaced but have heard nothing back yet.
Has anyone else experienced this? Am I nuts or doing something wrong? I tried the bearings on all of the other smooth rods and they work fine. Just that one has issues.
I also had an issue with the provided m3 nuts being too tall verticly to fit into the slots. And yes, I tried to insert them from bothe sides. I ended up breaking one of the pieces of acrylic trying to force one in. I ended up holding them with pliers and "thinning" them on the belt sander. Maybe he changed sources for hardware and the specs are a bit off?
This is my first 3D printer ever and when I started to watch the build videos I figured I'd do my own that would have better quality as to help out others but I'm at a standstill until I can get the rod thing resolved.
Re: Folger Prusa i3 Kit from ebay November 18, 2014 01:43PM |
Registered: 10 years ago Posts: 110 |
Quote
SteveRoy
As Gannicus posted - for the Y end stop, if it's at the back it's a MIN, if at the front it's a MAX. You need to change the firmware and the position on the RAMPS to suit.
Same with X, if it's on the left it's a MIN, on the right a MAX
Steve
#define min_software_endstops true // If true, axis won't move to coordinates less than HOME_POS. #define max_software_endstops true // If true, axis won't move to coordinates greater than the defined lengths below.
// ENDSTOP SETTINGS: // Sets direction of endstops when homing; 1=MAX, -1=MIN #define X_HOME_DIR -1 #define Y_HOME_DIR -1 #define Z_HOME_DIR -1
#define INVERT_Y_DIR false // for Mendel set to true, for Orca set to false
Re: Folger Prusa i3 Kit from ebay November 18, 2014 05:10PM |
Registered: 10 years ago Posts: 134 |
Re: Folger Prusa i3 Kit from ebay November 18, 2014 07:19PM |
Registered: 10 years ago Posts: 208 |
Re: Folger Prusa i3 Kit from ebay November 18, 2014 07:36PM |
Registered: 10 years ago Posts: 134 |
Re: Folger Prusa i3 Kit from ebay November 18, 2014 07:56PM |
Registered: 10 years ago Posts: 208 |
Re: Folger Prusa i3 Kit from ebay November 18, 2014 08:03PM |
Registered: 10 years ago Posts: 57 |
Quote
louspinuso
I've not had the problem with the bearings feeling snug at all. Have you tried a different bearing on that rod (I know they send a couple of extras)?. As for the nuts, I found that some were snug and you have to put them in from the right side (the other side is way too tight) but most importantly, if you don't slide them in just right (the top and bottom completely flat and level with the grooves in the acrylic) you'll fight to get them in at all.
As other's have stated, 3dprinterczar has some more complete instructions on their site for a Prusa i3. It was a little late for me to find them. Good luck on your build
Re: Folger Prusa i3 Kit from ebay November 18, 2014 08:13PM |
Registered: 10 years ago Posts: 134 |
Quote
Waltermixx
Make sure the extruded is up to the correct temperature first using
Either the lad screen or repetier host, also make sure you extruded fan is turned on.
Once you get it up to temp you can load the filament and then use repetier host to extrude about 10mm
Hope this helps? The plastic will not go through unless the extruded is hot.
Re: Folger Prusa i3 Kit from ebay November 18, 2014 08:29PM |
Registered: 10 years ago Posts: 208 |
Re: Folger Prusa i3 Kit from ebay November 18, 2014 09:01PM |
Registered: 10 years ago Posts: 134 |
Re: Folger Prusa i3 Kit from ebay November 18, 2014 09:13PM |
Registered: 10 years ago Posts: 110 |
Quote
Gannicus
Quote
Waltermixx
Keep going. Do 100mm. It has to come out eventually.
It doesn't. It gets to a point where it just like...skips on itself, and stops feeding it into the hot end.