On heat up of extruder 2 temp change is displayed at same time for both extruders ?
As in title.....If i start extruder number two i see temp change at same time for both extruders.Its just about whats displayed.....Printer works perfect.On independant menu under extruder tab all is displayed properly.Only on main display its going as i described it.....Can anyone help about what to edit in source files?
Comments
#if MIXING_EXTRUDER || SHARED_EXTRUDER_HEATER
extr = 0; // map any virtual extruder number to 0
#endif // MIXING_EXTRUDER
#define SHARED_EXTRUDER_HEATER 0
Don't know Cura to say when they show what. Can only say see M105 response to see what really is happening and eventually check if cura messes it up or if firmware is doing it wrong. That is what console/log is good fore. Seeing on which side the problem lies by analysing the communication.
If you show a log of communication I can see if there is an error or not.
13:35:31.002 : N134 M105 X0*105
13:35:33.877 : N135 M105*32
13:35:36.936 : N136 M105*35
13:35:40.002 : N137 M105*34
13:35:43.061 : N138 M105*45
13:35:46.127 : N139 M105*44
13:35:49.186 : N140 M105*34
13:35:52.247 : N141 M105*35
13:35:55.313 : N142 M105*32
13:35:58.372 : N143 M105*33
13:36:00.636 : N144 M105 X1*111
13:36:01.438 : N145 M105*39
13:36:04.498 : N146 M105*36
13:36:07.566 : N147 M105*37
13:36:10.625 : N148 M105*42
13:36:13.691 : N149 M105*43
13:36:16.750 : N150 M105*35
13:36:19.809 : N151 M105*34
13:36:22.876 : N152 M105*33
13:36:25.937 : N153 M105*32
13:36:29.003 : N154 M105*39
13:36:32.062 : N155 M105*38
13:36:35.128 : N156 M105*37
13:36:38.187 : N157 M105*36
13:36:41.253 : N158 M105*43
13:36:44.314 : N159 M105*42
13:36:47.373 : N160 M105*32
13:36:50.439 : N161 M105*33
13:36:53.498 : N162 M105*34
13:36:56.565 : N163 M105*35
13:36:59.634 : N164 M105*36
13:37:02.685 : N165 M105*37
Why are you starting with an old firmware version btw?
Also I do not fully understand what you tell with errors, if you come from a shared extruder config make sure both extruders use different heater and sensor pins.
Still not sure which menu shows the wrong temperature as there are quite some pages showing multiple temperatures, but will check once I'm back to dev version on my printer.
What exactly is the error with FAN2? Note that not all boards define FAN2 so in these cases you have to select the correct digital pin number instead that you use.
You mean the one with the lines and fan to the right. That is covered by
in uilang.h for english.
What is if you scroll to the temperature list covered by:
As you see both use same outputs %e1 and %E1 and I have tested that the second which is the only I have is working correctly with that.
You are using 1.0.3 or 1.0.4 right? Not that we compare here different version. Fixes are only made against dev version which is what i tested and is 1.0.4
Do both screens have the same error?
You also can have temperatures in the line but for these you define the codes in configuration.h so it depends on what you put in there.
#define UI_TEXT_PAGE_EXTRUDER1_EN "E1:%e0/%E0" cDEG "C" cARROW "%o0"
#define UI_TEXT_PAGE_EXTRUDER2_EN "E2:%e1/%E1" cDEG "C" cARROW "%o1"
#define UI_TEXT_MAINPAGE6_1_EN "\xa 1:%ec/%Ec\xb0 X:%x0"
#else
#define UI_TEXT_MAINPAGE6_1_EN "\xa %e0/%E0\xb0 X:%x0"
#endif // NUM_EXTRUDER
#if NUM_EXTRUDER == 2 && MIXING_EXTRUDER == 0
#define UI_TEXT_MAINPAGE6_2_EN "\xa 2:%e1/%E1\xb0 Y:%x1"
#elif HAVE_HEATED_BED
#define UI_TEXT_MAINPAGE6_2_EN "\xe %eb/%Eb\xb0 Y:%x1"
#else
#define UI_TEXT_MAINPAGE6_2_EN " Y:%x1"
#endif