Extruder LCD Menu

Hello,
I mounted a third extruded on my RAMPS 1.4 with a 'Stepper Motor Drive Expander'

I added :

in file 'pin.h'

#define ORIG_E2_STEP_PIN 64
#define ORIG_E2_DIR_PIN 59
#define ORIG_E2_ENABLE_PIN 44
#define E2_PINS ORIG_E2_STEP_PIN, ORIG_E2_DIR_PIN, ORIG_E2_ENABLE_PIN,

in file 'configutation.h'

... / ...
#define EXT2_STEP_PIN ORIG_E2_STEP_PIN
#define EXT2_DIR_PIN ORIG_E2_DIR_PIN
#define EXT2_INVERSE 0
#define EXT2_ENABLE_PIN ORIG_E2_ENABLE_PIN
... / ...
#define MIXING_EXTRUDER 0
... / ...
#define SHARED_EXTRUDER_HEATER 1

Everything works properly ...

But in LCD Extruder menu it appears this:

-Twice 'Temp. 2' instead of 'Temp. 3'
image


-When I select the Extr. 1, the case 'Select. Extr. 1' is checked and the cases 'Select. Extr. 2' and ' 3'are unchecked,
'Extr. 1' works. (Normal)
image


-When I select the Extr. 2, the cases 'Select. Extr. 2' and 'Select. Extr. 3' are checked,
'Extr. 2' works.
image


-When I select the Extr. 3, the cases 'Select. Extr. 2' and 'Select. Extr. 3' are unchecked,
'Extr. 3' works.
image

It seems to be a bug only in the menu.

Comments

Sign In or Register to comment.