<font face="Arial, Verdana">It worked!</font>
<font face="Arial, Verdana">Took some time to test out different stuff but what I have now works. Couple of questions from uilang.h:</font>
<font face="Arial, Verdana">- What do the _ID lines do? They appear to be overwritten by the language specific lines (in my case _EN) and I don't see them referenced anywhere in the whole code.</font>
<font face="Arial, Verdana">- what does the code /xa or /xe do with the IDs? e.g. #define UI_TEXT_MAINPAGE6_1_ID 229 //"\xa %e0/%E0\xb0 X:%x0"</font>
<font face="Arial, Verdana">- How do I define decimal values for this temperature? I don't need them for now since it's not hugely important, but I would like to know if it's hard to define this.</font>
<font face="Arial, Verdana">
</font>
<font face="Arial, Verdana">Here is an overview of what I have now that works:</font>
<font face="Arial, Verdana" style="font-style: normal;"><div><font face="Arial, Verdana">
</font></div></font>- Adding a variable for the new temperature (what was added by Repetier to the latest dev build)
uimenu.h<font face="Arial, Verdana" style="font-style: normal;">
</font>
<font face="Arial, Verdana">extruder</font>
<font face="Arial, Verdana">%et : Thermo controlled fan temperature</font>
<font face="Arial, Verdana">
</font>
- I defined the thermo controlled fan here, with an unused digital pin. I put a thermistor I had lying around to my E2 thermistor input.
<font face="Arial, Verdana" style="font-style: normal;">Configuration.h</font>
<font face="Arial, Verdana">#define FAN_THERMO_PIN 36</font>
<font face="Arial, Verdana">#define FAN_THERMO_MIN_PWM 128</font>
<font face="Arial, Verdana">#define FAN_THERMO_MAX_PWM 255</font>
<font face="Arial, Verdana">#define FAN_THERMO_MIN_TEMP 45</font>
<font face="Arial, Verdana">#define FAN_THERMO_MAX_TEMP 60</font>
<font face="Arial, Verdana">#define FAN_THERMO_THERMISTOR_PIN TEMP_2_PIN</font>
<font face="Arial, Verdana">#define FAN_THERMO_THERMISTOR_TYPE 8</font>
<font face="Arial, Verdana">
</font>
<font face="Arial, Verdana">- Here I commented the Buffer text that was displayed on my screen and replaced it with the temperature.</font>
<font face="Arial, Verdana">uilang.h</font>
<font face="Arial, Verdana">
//#define UI_TEXT_PAGE_BUFFER_ID 170 // "Buffer:%oB"
#define UI_TEXT_PAGE_BUFFER_ID 170 // " ENCL:%et" cDEG "C""
//#define UI_TEXT_MAINPAGE6_5_ID 233 //"Buf: %oB"
#define UI_TEXT_MAINPAGE6_5_ID 233 //"\xa %et"
//#define UI_TEXT_PAGE_BUFFER_EN "Buffer:%oB"
#define UI_TEXT_PAGE_BUFFER_EN "ENCL.:%et" cDEG "C"
//#define UI_TEXT_MAINPAGE6_5_EN "Buf: %oB"
#define UI_TEXT_MAINPAGE6_5_EN "ENCL:%et" cDEG "C"
</font>