Struggling with Einsy February 21, 2018 10:07PM |
Registered: 7 years ago Posts: 25 |
Re: Struggling with Einsy February 22, 2018 03:25AM |
Registered: 8 years ago Posts: 5,232 |
Re: Struggling with Einsy February 24, 2018 03:17PM |
Registered: 7 years ago Posts: 25 |
Quote
o_lampe
Those LCDs ribbon cables are in the right socket and in the right orientation? Many people had to cut off the nose on their cable connectors and reverse the plug.
IDK if Rambo has an issue with that, but some other boards do...
Quote
o_lampe
Who flashed the Rambo board for you? If it was you, then go through all the settings in configuration.h and figure out, what's wrong.
For starters you could send M203 X... Y... to a level, where homing works. ( homing speed can't be set with gcode commands, but limiting max. speed should have the same effect )
Re: Struggling with Einsy February 25, 2018 03:35AM |
Registered: 8 years ago Posts: 5,232 |
Re: Struggling with Einsy February 25, 2018 09:38AM |
Registered: 7 years ago Posts: 25 |
Re: Struggling with Einsy February 25, 2018 03:37PM |
Registered: 7 years ago Posts: 25 |
Re: Struggling with Einsy February 26, 2018 03:41AM |
Registered: 8 years ago Posts: 5,232 |
Re: Struggling with Einsy February 26, 2018 07:26PM |
Registered: 7 years ago Posts: 25 |
I did check polarity on both the power supply and einsy board. Both are wired correctly. I also measured voltage at 12.5v at the einsy input.Quote
o_lampe
That looks weird...
I think we have to go back to square one:
Check the powersupply and the power wires.
. Here is a pic: photo of einsy The drivers appear to all be oriented the same way.Quote
o_lampe
Check the drivers position and orientation on the Einsy. The position of the Vref potmeter is NOT the same on different drivers, so you have to look for the pin labels, DIR a.s.o
I did swap two pins and movement is better. Here is a video of what is happening now: Another einsy vidQuote
o_lampe
Is the header for the steppers labelled the same as on RAMPS? Maybe you have to switch some wires to the steppers?
Re: Struggling with Einsy February 27, 2018 03:09AM |
Registered: 8 years ago Posts: 5,232 |
* Default Max Acceleration (change/s) change = mm/s * (Maximum start speed for accelerated moves) * Override with M201 * X, Y, Z, E0 [, E1[, E2[, E3[, E4]]]] */ #define DEFAULT_MAX_ACCELERATION {1000, 1000, 30, 2000} //my orig settings: { 3000, 3000, 30, 2000} /** * Default Acceleration (change/s) change = mm/s * Override with M204 * * M204 P Acceleration * M204 R Retract Acceleration * M204 T Travel Acceleration */ #define DEFAULT_ACCELERATION 3000 // X, Y, Z and E acceleration for printing moves #define DEFAULT_RETRACT_ACCELERATION 150 // E acceleration for retracts #define DEFAULT_TRAVEL_ACCELERATION 3000 // X, Y, Z acceleration for travel (non printing) moves
// Homing speeds (mm/m) ; this is 60 times slower than max_print speed, why?
#define HOMING_FEEDRATE_XY (200)
#define HOMING_FEEDRATE_Z (25)
Re: Struggling with Einsy February 27, 2018 11:59AM |
Registered: 7 years ago Posts: 25 |
* Default Max Acceleration (change/s) change = mm/s * (Maximum start speed for accelerated moves) * Override with M201 * X, Y, Z, E0 [, E1[, E2[, E3[, E4]]]] */ #define DEFAULT_MAX_ACCELERATION {1000, 1000, 30, 2000} //my orig settings: { 3000, 3000, 30, 2000} /** * Default Acceleration (change/s) change = mm/s * Override with M204 * * M204 P Acceleration * M204 R Retract Acceleration * M204 T Travel Acceleration */ #define DEFAULT_ACCELERATION 200 // X, Y, Z and E acceleration for printing moves #define DEFAULT_RETRACT_ACCELERATION 200 // E acceleration for retracts #define DEFAULT_TRAVEL_ACCELERATION 200 // X, Y, Z acceleration for travel (non printing) moves
// Homing speeds (mm/m) ;
#define HOMING_FEEDRATE_XY (600)
#define HOMING_FEEDRATE_Z (25)
Re: Struggling with Einsy February 28, 2018 02:32AM |
Registered: 8 years ago Posts: 5,232 |
Re: Struggling with Einsy March 02, 2018 09:30AM |
Registered: 7 years ago Posts: 25 |
Re: Struggling with Einsy March 02, 2018 04:07PM |
Registered: 7 years ago Posts: 25 |
Re: Struggling with Einsy March 03, 2018 02:53AM |
Registered: 8 years ago Posts: 5,232 |
Re: Struggling with Einsy March 03, 2018 11:18AM |
Registered: 7 years ago Posts: 25 |
Re: Struggling with Einsy March 03, 2018 04:04PM |
Registered: 9 years ago Posts: 4 |
Re: Struggling with Einsy March 03, 2018 11:27PM |
Admin Registered: 12 years ago Posts: 6,916 |
Re: Struggling with Einsy March 13, 2018 07:42PM |
Registered: 7 years ago Posts: 25 |
Re: Struggling with Einsy March 30, 2018 03:51AM |
Registered: 5 years ago Posts: 48 |