2

I have an Anycubic Kossel with Trigorilla Motherboard, Mega2560+RAMPS1.4.

I'm using Marlin 2_0_bugfix

My Y connector is not working anymore so I would like to use E1 connector as Y. I found a very good solution here but for me for some reason it's not working.

I did that modification what suggested in the pins_RAMPS.h file (for Y of course instead of X), then I compiled it with Arduino 1.8.13 and uploaded to my printer.

After that I flashed firmware then Y (which I plugged to E1) is not moving anywhere. I have never plugged anything to E1 before, so I think the connector port must be good and working.

What I am missing, what's my mistake?

What I did:

#define Y_STEP_PIN         36
#define Y_DIR_PIN          34
#define Y_ENABLE_PIN       30
#ifndef Y_CS_PIN
  #define Y_CS_PIN         44
#endif

#define E1_STEP_PIN 60 #define E1_DIR_PIN 61 #define E1_ENABLE_PIN 56 #ifndef E1_CS_PIN #define E1_CS_PIN 49 #endif

0scar
  • 37,708
  • 12
  • 68
  • 156
Davinho
  • 33
  • 1
  • 5

1 Answers1

0

If you followed the answer to switch steppers in firmware to the letter, but changing X for Y, this should work.

I've looked into the pins files for you and concluded that your proposed changes should work.

This leaves you with the following questions:

  • Is the stepper driver for E1 working?
  • Is there a stepper driver installed?
  • Is the cable working/not damaged?

Swap drivers and cables to troubleshoot the problem.

0scar
  • 37,708
  • 12
  • 68
  • 156