new build folger tech prusa i3 issue with extruder motor June 19, 2015 09:10AM |
Registered: 9 years ago Posts: 10 |
Re: new build folger tech prusa i3 issue with extruder motor June 19, 2015 11:09AM |
Registered: 9 years ago Posts: 5,232 |
//this prevents dangerous Extruder moves, i.e. if the temperature is under the limit //can be software-disabled for whatever purposes by #define PREVENT_DANGEROUS_EXTRUDE
Re: new build folger tech prusa i3 issue with extruder motor June 19, 2015 01:26PM |
Registered: 9 years ago Posts: 10 |
Re: new build folger tech prusa i3 issue with extruder motor June 20, 2015 04:49AM |
Registered: 9 years ago Posts: 5,232 |
Re: new build folger tech prusa i3 issue with extruder motor June 20, 2015 07:04AM |
Registered: 9 years ago Posts: 10 |
Re: new build folger tech prusa i3 issue with extruder motor June 26, 2015 08:42AM |
Registered: 9 years ago Posts: 10 |
Re: new build folger tech prusa i3 issue with extruder motor July 07, 2015 03:07PM |
Registered: 9 years ago Posts: 4 |
Re: new build folger tech prusa i3 issue with extruder motor July 07, 2015 03:36PM |
Registered: 9 years ago Posts: 10 |
Re: new build folger tech prusa i3 issue with extruder motor July 08, 2015 01:30PM |
Registered: 9 years ago Posts: 82 |
Re: new build folger tech prusa i3 issue with extruder motor July 12, 2015 06:51PM |
Registered: 9 years ago Posts: 10 |
Re: new build folger tech prusa i3 issue with extruder motor July 18, 2015 02:20PM |
Registered: 10 years ago Posts: 39 |
Re: new build folger tech prusa i3 issue with extruder motor July 19, 2015 09:55AM |
Registered: 9 years ago Posts: 116 |
Re: new build folger tech prusa i3 issue with extruder motor July 20, 2015 10:51AM |
Registered: 9 years ago Posts: 81 |
Re: new build folger tech prusa i3 issue with extruder motor July 20, 2015 01:43PM |
Registered: 10 years ago Posts: 39 |
Re: new build folger tech prusa i3 issue with extruder motor July 22, 2015 09:16PM |
Registered: 9 years ago Posts: 10 |
Quote
wderoxas
From pins.h
#define E0_STEP_PIN 26
#define E0_DIR_PIN 28
#define E0_ENABLE_PIN 24
#define E1_STEP_PIN 36
#define E1_DIR_PIN 34
#define E1_ENABLE_PIN 30
You could probably switch them just to verify that the atmega pins used on E0 are not the problem. e.g:
#define E0_STEP_PIN 36 //26
#define E0_DIR_PIN 34 //28
#define E0_ENABLE_PIN 30 //24
#define E1_STEP_PIN 26 //36
#define E1_DIR_PIN 28 //34
#define E1_ENABLE_PIN 24 //30
Plug in your driver on E1 slot of RAMPS, but send out the extrusion commands on E0.
Haven't tried this though so try at your own risk. If this s dangerous, anyone is welcome to chime in.
And by the way, though remotely possible, did you ensure that you are extruding from E0 on the printer host interface? Just making sure..
Re: new build folger tech prusa i3 issue with extruder motor July 22, 2015 09:18PM |
Registered: 9 years ago Posts: 10 |
Quote
Ecky
Have you contacted Folger Tech???
Re: new build folger tech prusa i3 issue with extruder motor July 22, 2015 09:20PM |
Registered: 9 years ago Posts: 10 |
Re: new build folger tech prusa i3 issue with extruder motor August 19, 2015 08:09PM |
Registered: 9 years ago Posts: 10 |
Quote
Bushkill
Quote
wderoxas
From pins.h
#define E0_STEP_PIN 26
#define E0_DIR_PIN 28
#define E0_ENABLE_PIN 24
#define E1_STEP_PIN 36
#define E1_DIR_PIN 34
#define E1_ENABLE_PIN 30
You could probably switch them just to verify that the atmega pins used on E0 are not the problem. e.g:
#define E0_STEP_PIN 36 //26
#define E0_DIR_PIN 34 //28
#define E0_ENABLE_PIN 30 //24
#define E1_STEP_PIN 26 //36
#define E1_DIR_PIN 28 //34
#define E1_ENABLE_PIN 24 //30
Plug in your driver on E1 slot of RAMPS, but send out the extrusion commands on E0.
Haven't tried this though so try at your own risk. If this s dangerous, anyone is welcome to chime in.
And by the way, though remotely possible, did you ensure that you are extruding from E0 on the printer host interface? Just making sure..
Thanks, this is what I have been looking for. The next step in isolating the issue. I'll give it a try this weekend.