My Marlin configs for Fabrikator Mini and CTC i3 Pro B
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ultralcd.cpp 47KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575
  1. #include "temperature.h"
  2. #include "ultralcd.h"
  3. #ifdef ULTRA_LCD
  4. #include "Marlin.h"
  5. #include "language.h"
  6. #include "cardreader.h"
  7. #include "temperature.h"
  8. #include "stepper.h"
  9. #include "ConfigurationStore.h"
  10. int8_t encoderDiff; /* encoderDiff is updated from interrupt context and added to encoderPosition every LCD update */
  11. /* Configuration settings */
  12. int plaPreheatHotendTemp;
  13. int plaPreheatHPBTemp;
  14. int plaPreheatFanSpeed;
  15. int absPreheatHotendTemp;
  16. int absPreheatHPBTemp;
  17. int absPreheatFanSpeed;
  18. #ifdef FILAMENT_LCD_DISPLAY
  19. unsigned long message_millis=0;
  20. #endif
  21. #ifdef ULTIPANEL
  22. static float manual_feedrate[] = MANUAL_FEEDRATE;
  23. #endif // ULTIPANEL
  24. /* !Configuration settings */
  25. //Function pointer to menu functions.
  26. typedef void (*menuFunc_t)();
  27. uint8_t lcd_status_message_level;
  28. char lcd_status_message[LCD_WIDTH+1] = WELCOME_MSG;
  29. #ifdef DOGLCD
  30. #include "dogm_lcd_implementation.h"
  31. #else
  32. #include "ultralcd_implementation_hitachi_HD44780.h"
  33. #endif
  34. /** forward declarations **/
  35. void copy_and_scalePID_i();
  36. void copy_and_scalePID_d();
  37. /* Different menus */
  38. static void lcd_status_screen();
  39. #ifdef ULTIPANEL
  40. extern bool powersupply;
  41. static void lcd_main_menu();
  42. static void lcd_tune_menu();
  43. static void lcd_prepare_menu();
  44. static void lcd_move_menu();
  45. static void lcd_control_menu();
  46. static void lcd_control_temperature_menu();
  47. static void lcd_control_temperature_preheat_pla_settings_menu();
  48. static void lcd_control_temperature_preheat_abs_settings_menu();
  49. static void lcd_control_motion_menu();
  50. #ifdef DOGLCD
  51. static void lcd_set_contrast();
  52. #endif
  53. static void lcd_control_retract_menu();
  54. static void lcd_sdcard_menu();
  55. static void lcd_quick_feedback();//Cause an LCD refresh, and give the user visual or audible feedback that something has happened
  56. /* Different types of actions that can be used in menu items. */
  57. static void menu_action_back(menuFunc_t data);
  58. static void menu_action_submenu(menuFunc_t data);
  59. static void menu_action_gcode(const char* pgcode);
  60. static void menu_action_function(menuFunc_t data);
  61. static void menu_action_sdfile(const char* filename, char* longFilename);
  62. static void menu_action_sddirectory(const char* filename, char* longFilename);
  63. static void menu_action_setting_edit_bool(const char* pstr, bool* ptr);
  64. static void menu_action_setting_edit_int3(const char* pstr, int* ptr, int minValue, int maxValue);
  65. static void menu_action_setting_edit_float3(const char* pstr, float* ptr, float minValue, float maxValue);
  66. static void menu_action_setting_edit_float32(const char* pstr, float* ptr, float minValue, float maxValue);
  67. static void menu_action_setting_edit_float5(const char* pstr, float* ptr, float minValue, float maxValue);
  68. static void menu_action_setting_edit_float51(const char* pstr, float* ptr, float minValue, float maxValue);
  69. static void menu_action_setting_edit_float52(const char* pstr, float* ptr, float minValue, float maxValue);
  70. static void menu_action_setting_edit_long5(const char* pstr, unsigned long* ptr, unsigned long minValue, unsigned long maxValue);
  71. static void menu_action_setting_edit_callback_bool(const char* pstr, bool* ptr, menuFunc_t callbackFunc);
  72. static void menu_action_setting_edit_callback_int3(const char* pstr, int* ptr, int minValue, int maxValue, menuFunc_t callbackFunc);
  73. static void menu_action_setting_edit_callback_float3(const char* pstr, float* ptr, float minValue, float maxValue, menuFunc_t callbackFunc);
  74. static void menu_action_setting_edit_callback_float32(const char* pstr, float* ptr, float minValue, float maxValue, menuFunc_t callbackFunc);
  75. static void menu_action_setting_edit_callback_float5(const char* pstr, float* ptr, float minValue, float maxValue, menuFunc_t callbackFunc);
  76. static void menu_action_setting_edit_callback_float51(const char* pstr, float* ptr, float minValue, float maxValue, menuFunc_t callbackFunc);
  77. static void menu_action_setting_edit_callback_float52(const char* pstr, float* ptr, float minValue, float maxValue, menuFunc_t callbackFunc);
  78. static void menu_action_setting_edit_callback_long5(const char* pstr, unsigned long* ptr, unsigned long minValue, unsigned long maxValue, menuFunc_t callbackFunc);
  79. #define ENCODER_FEEDRATE_DEADZONE 10
  80. #if !defined(LCD_I2C_VIKI)
  81. #ifndef ENCODER_STEPS_PER_MENU_ITEM
  82. #define ENCODER_STEPS_PER_MENU_ITEM 5
  83. #endif
  84. #ifndef ENCODER_PULSES_PER_STEP
  85. #define ENCODER_PULSES_PER_STEP 1
  86. #endif
  87. #else
  88. #ifndef ENCODER_STEPS_PER_MENU_ITEM
  89. #define ENCODER_STEPS_PER_MENU_ITEM 2 // VIKI LCD rotary encoder uses a different number of steps per rotation
  90. #endif
  91. #ifndef ENCODER_PULSES_PER_STEP
  92. #define ENCODER_PULSES_PER_STEP 1
  93. #endif
  94. #endif
  95. /* Helper macros for menus */
  96. #define START_MENU() do { \
  97. if (encoderPosition > 0x8000) encoderPosition = 0; \
  98. if (encoderPosition / ENCODER_STEPS_PER_MENU_ITEM < currentMenuViewOffset) currentMenuViewOffset = encoderPosition / ENCODER_STEPS_PER_MENU_ITEM;\
  99. uint8_t _lineNr = currentMenuViewOffset, _menuItemNr; \
  100. bool wasClicked = LCD_CLICKED;\
  101. for(uint8_t _drawLineNr = 0; _drawLineNr < LCD_HEIGHT; _drawLineNr++, _lineNr++) { \
  102. _menuItemNr = 0;
  103. #define MENU_ITEM(type, label, args...) do { \
  104. if (_menuItemNr == _lineNr) { \
  105. if (lcdDrawUpdate) { \
  106. const char* _label_pstr = PSTR(label); \
  107. if ((encoderPosition / ENCODER_STEPS_PER_MENU_ITEM) == _menuItemNr) { \
  108. lcd_implementation_drawmenu_ ## type ## _selected (_drawLineNr, _label_pstr , ## args ); \
  109. }else{\
  110. lcd_implementation_drawmenu_ ## type (_drawLineNr, _label_pstr , ## args ); \
  111. }\
  112. }\
  113. if (wasClicked && (encoderPosition / ENCODER_STEPS_PER_MENU_ITEM) == _menuItemNr) {\
  114. lcd_quick_feedback(); \
  115. menu_action_ ## type ( args ); \
  116. return;\
  117. }\
  118. }\
  119. _menuItemNr++;\
  120. } while(0)
  121. #define MENU_ITEM_DUMMY() do { _menuItemNr++; } while(0)
  122. #define MENU_ITEM_EDIT(type, label, args...) MENU_ITEM(setting_edit_ ## type, label, PSTR(label) , ## args )
  123. #define MENU_ITEM_EDIT_CALLBACK(type, label, args...) MENU_ITEM(setting_edit_callback_ ## type, label, PSTR(label) , ## args )
  124. #define END_MENU() \
  125. if (encoderPosition / ENCODER_STEPS_PER_MENU_ITEM >= _menuItemNr) encoderPosition = _menuItemNr * ENCODER_STEPS_PER_MENU_ITEM - 1; \
  126. if ((uint8_t)(encoderPosition / ENCODER_STEPS_PER_MENU_ITEM) >= currentMenuViewOffset + LCD_HEIGHT) { currentMenuViewOffset = (encoderPosition / ENCODER_STEPS_PER_MENU_ITEM) - LCD_HEIGHT + 1; lcdDrawUpdate = 1; _lineNr = currentMenuViewOffset - 1; _drawLineNr = -1; } \
  127. } } while(0)
  128. /** Used variables to keep track of the menu */
  129. #ifndef REPRAPWORLD_KEYPAD
  130. volatile uint8_t buttons;//Contains the bits of the currently pressed buttons.
  131. #else
  132. volatile uint8_t buttons_reprapworld_keypad; // to store the reprapworld_keypad shift register values
  133. #endif
  134. #ifdef LCD_HAS_SLOW_BUTTONS
  135. volatile uint8_t slow_buttons;//Contains the bits of the currently pressed buttons.
  136. #endif
  137. uint8_t currentMenuViewOffset; /* scroll offset in the current menu */
  138. uint32_t blocking_enc;
  139. uint8_t lastEncoderBits;
  140. uint32_t encoderPosition;
  141. #if (SDCARDDETECT > 0)
  142. bool lcd_oldcardstatus;
  143. #endif
  144. #endif//ULTIPANEL
  145. menuFunc_t currentMenu = lcd_status_screen; /* function pointer to the currently active menu */
  146. uint32_t lcd_next_update_millis;
  147. uint8_t lcd_status_update_delay;
  148. bool ignore_click = false;
  149. bool wait_for_unclick;
  150. uint8_t lcdDrawUpdate = 2; /* Set to none-zero when the LCD needs to draw, decreased after every draw. Set to 2 in LCD routines so the LCD gets at least 1 full redraw (first redraw is partial) */
  151. //prevMenu and prevEncoderPosition are used to store the previous menu location when editing settings.
  152. menuFunc_t prevMenu = NULL;
  153. uint16_t prevEncoderPosition;
  154. //Variables used when editing values.
  155. const char* editLabel;
  156. void* editValue;
  157. int32_t minEditValue, maxEditValue;
  158. menuFunc_t callbackFunc;
  159. // place-holders for Ki and Kd edits
  160. float raw_Ki, raw_Kd;
  161. static void lcd_goto_menu(menuFunc_t menu, const uint32_t encoder=0, const bool feedback=true) {
  162. if (currentMenu != menu) {
  163. currentMenu = menu;
  164. encoderPosition = encoder;
  165. if (feedback) lcd_quick_feedback();
  166. }
  167. }
  168. /* Main status screen. It's up to the implementation specific part to show what is needed. As this is very display dependent */
  169. static void lcd_status_screen()
  170. {
  171. if (lcd_status_update_delay)
  172. lcd_status_update_delay--;
  173. else
  174. lcdDrawUpdate = 1;
  175. if (lcdDrawUpdate)
  176. {
  177. lcd_implementation_status_screen();
  178. lcd_status_update_delay = 10; /* redraw the main screen every second. This is easier then trying keep track of all things that change on the screen */
  179. }
  180. #ifdef ULTIPANEL
  181. bool current_click = LCD_CLICKED;
  182. if (ignore_click) {
  183. if (wait_for_unclick) {
  184. if (!current_click) {
  185. ignore_click = wait_for_unclick = false;
  186. }
  187. else {
  188. current_click = false;
  189. }
  190. }
  191. else if (current_click) {
  192. lcd_quick_feedback();
  193. wait_for_unclick = true;
  194. current_click = false;
  195. }
  196. }
  197. if (current_click)
  198. {
  199. lcd_goto_menu(lcd_main_menu);
  200. lcd_implementation_init(); // to maybe revive the LCD if static electricity killed it.
  201. #ifdef FILAMENT_LCD_DISPLAY
  202. message_millis=millis(); //get status message to show up for a while
  203. #endif
  204. }
  205. #ifdef ULTIPANEL_FEEDMULTIPLY
  206. // Dead zone at 100% feedrate
  207. if ((feedmultiply < 100 && (feedmultiply + int(encoderPosition)) > 100) ||
  208. (feedmultiply > 100 && (feedmultiply + int(encoderPosition)) < 100))
  209. {
  210. encoderPosition = 0;
  211. feedmultiply = 100;
  212. }
  213. if (feedmultiply == 100 && int(encoderPosition) > ENCODER_FEEDRATE_DEADZONE)
  214. {
  215. feedmultiply += int(encoderPosition) - ENCODER_FEEDRATE_DEADZONE;
  216. encoderPosition = 0;
  217. }
  218. else if (feedmultiply == 100 && int(encoderPosition) < -ENCODER_FEEDRATE_DEADZONE)
  219. {
  220. feedmultiply += int(encoderPosition) + ENCODER_FEEDRATE_DEADZONE;
  221. encoderPosition = 0;
  222. }
  223. else if (feedmultiply != 100)
  224. {
  225. feedmultiply += int(encoderPosition);
  226. encoderPosition = 0;
  227. }
  228. #endif//ULTIPANEL_FEEDMULTIPLY
  229. if (feedmultiply < 10)
  230. feedmultiply = 10;
  231. else if (feedmultiply > 999)
  232. feedmultiply = 999;
  233. #endif//ULTIPANEL
  234. }
  235. #ifdef ULTIPANEL
  236. static void lcd_return_to_status()
  237. {
  238. lcd_goto_menu(lcd_status_screen, 0, false);
  239. }
  240. static void lcd_sdcard_pause()
  241. {
  242. card.pauseSDPrint();
  243. }
  244. static void lcd_sdcard_resume()
  245. {
  246. card.startFileprint();
  247. }
  248. static void lcd_sdcard_stop()
  249. {
  250. card.sdprinting = false;
  251. card.closefile();
  252. quickStop();
  253. if(SD_FINISHED_STEPPERRELEASE)
  254. {
  255. enquecommand_P(PSTR(SD_FINISHED_RELEASECOMMAND));
  256. }
  257. autotempShutdown();
  258. cancel_heatup = true;
  259. lcd_setstatus(MSG_PRINT_ABORTED);
  260. }
  261. /* Menu implementation */
  262. static void lcd_main_menu()
  263. {
  264. START_MENU();
  265. MENU_ITEM(back, MSG_WATCH, lcd_status_screen);
  266. if (movesplanned() || IS_SD_PRINTING)
  267. {
  268. MENU_ITEM(submenu, MSG_TUNE, lcd_tune_menu);
  269. }else{
  270. MENU_ITEM(submenu, MSG_PREPARE, lcd_prepare_menu);
  271. }
  272. MENU_ITEM(submenu, MSG_CONTROL, lcd_control_menu);
  273. #ifdef SDSUPPORT
  274. if (card.cardOK)
  275. {
  276. if (card.isFileOpen())
  277. {
  278. if (card.sdprinting)
  279. MENU_ITEM(function, MSG_PAUSE_PRINT, lcd_sdcard_pause);
  280. else
  281. MENU_ITEM(function, MSG_RESUME_PRINT, lcd_sdcard_resume);
  282. MENU_ITEM(function, MSG_STOP_PRINT, lcd_sdcard_stop);
  283. }else{
  284. MENU_ITEM(submenu, MSG_CARD_MENU, lcd_sdcard_menu);
  285. #if SDCARDDETECT < 1
  286. MENU_ITEM(gcode, MSG_CNG_SDCARD, PSTR("M21")); // SD-card changed by user
  287. #endif
  288. }
  289. }else{
  290. MENU_ITEM(submenu, MSG_NO_CARD, lcd_sdcard_menu);
  291. #if SDCARDDETECT < 1
  292. MENU_ITEM(gcode, MSG_INIT_SDCARD, PSTR("M21")); // Manually initialize the SD-card via user interface
  293. #endif
  294. }
  295. #endif
  296. END_MENU();
  297. }
  298. #ifdef SDSUPPORT
  299. static void lcd_autostart_sd()
  300. {
  301. card.lastnr=0;
  302. card.setroot();
  303. card.checkautostart(true);
  304. }
  305. #endif
  306. void lcd_set_home_offsets()
  307. {
  308. for(int8_t i=0; i < NUM_AXIS; i++) {
  309. if (i != E_AXIS) {
  310. add_homing[i] -= current_position[i];
  311. current_position[i] = 0.0;
  312. }
  313. }
  314. plan_set_position(0.0, 0.0, 0.0, current_position[E_AXIS]);
  315. // Audio feedback
  316. enquecommand_P(PSTR("M300 S659 P200"));
  317. enquecommand_P(PSTR("M300 S698 P200"));
  318. lcd_return_to_status();
  319. }
  320. #ifdef BABYSTEPPING
  321. static void _lcd_babystep(int axis, const char *msg) {
  322. if (encoderPosition != 0) {
  323. babystepsTodo[axis] += (int)encoderPosition;
  324. encoderPosition = 0;
  325. lcdDrawUpdate = 1;
  326. }
  327. if (lcdDrawUpdate) lcd_implementation_drawedit(PSTR(msg), "");
  328. if (LCD_CLICKED) lcd_goto_menu(lcd_tune_menu);
  329. }
  330. static void lcd_babystep_x() { _lcd_babystep(X_AXIS, MSG_BABYSTEPPING_X); }
  331. static void lcd_babystep_y() { _lcd_babystep(Y_AXIS, MSG_BABYSTEPPING_Y); }
  332. static void lcd_babystep_z() { _lcd_babystep(Z_AXIS, MSG_BABYSTEPPING_Z); }
  333. #endif //BABYSTEPPING
  334. static void lcd_tune_menu()
  335. {
  336. START_MENU();
  337. MENU_ITEM(back, MSG_MAIN, lcd_main_menu);
  338. MENU_ITEM_EDIT(int3, MSG_SPEED, &feedmultiply, 10, 999);
  339. #if TEMP_SENSOR_0 != 0
  340. MENU_ITEM_EDIT(int3, MSG_NOZZLE, &target_temperature[0], 0, HEATER_0_MAXTEMP - 15);
  341. #endif
  342. #if TEMP_SENSOR_1 != 0
  343. MENU_ITEM_EDIT(int3, MSG_NOZZLE1, &target_temperature[1], 0, HEATER_1_MAXTEMP - 15);
  344. #endif
  345. #if TEMP_SENSOR_2 != 0
  346. MENU_ITEM_EDIT(int3, MSG_NOZZLE2, &target_temperature[2], 0, HEATER_2_MAXTEMP - 15);
  347. #endif
  348. #if TEMP_SENSOR_BED != 0
  349. MENU_ITEM_EDIT(int3, MSG_BED, &target_temperature_bed, 0, BED_MAXTEMP - 15);
  350. #endif
  351. MENU_ITEM_EDIT(int3, MSG_FAN_SPEED, &fanSpeed, 0, 255);
  352. MENU_ITEM_EDIT(int3, MSG_FLOW, &extrudemultiply, 10, 999);
  353. MENU_ITEM_EDIT(int3, MSG_FLOW0, &extruder_multiply[0], 10, 999);
  354. #if TEMP_SENSOR_1 != 0
  355. MENU_ITEM_EDIT(int3, MSG_FLOW1, &extruder_multiply[1], 10, 999);
  356. #endif
  357. #if TEMP_SENSOR_2 != 0
  358. MENU_ITEM_EDIT(int3, MSG_FLOW2, &extruder_multiply[2], 10, 999);
  359. #endif
  360. #ifdef BABYSTEPPING
  361. #ifdef BABYSTEP_XY
  362. MENU_ITEM(submenu, MSG_BABYSTEP_X, lcd_babystep_x);
  363. MENU_ITEM(submenu, MSG_BABYSTEP_Y, lcd_babystep_y);
  364. #endif //BABYSTEP_XY
  365. MENU_ITEM(submenu, MSG_BABYSTEP_Z, lcd_babystep_z);
  366. #endif
  367. #ifdef FILAMENTCHANGEENABLE
  368. MENU_ITEM(gcode, MSG_FILAMENTCHANGE, PSTR("M600"));
  369. #endif
  370. END_MENU();
  371. }
  372. void lcd_preheat_pla0()
  373. {
  374. setTargetHotend0(plaPreheatHotendTemp);
  375. setTargetBed(plaPreheatHPBTemp);
  376. fanSpeed = plaPreheatFanSpeed;
  377. lcd_return_to_status();
  378. setWatch(); // heater sanity check timer
  379. }
  380. void lcd_preheat_abs0()
  381. {
  382. setTargetHotend0(absPreheatHotendTemp);
  383. setTargetBed(absPreheatHPBTemp);
  384. fanSpeed = absPreheatFanSpeed;
  385. lcd_return_to_status();
  386. setWatch(); // heater sanity check timer
  387. }
  388. #if TEMP_SENSOR_1 != 0 //2nd extruder preheat
  389. void lcd_preheat_pla1()
  390. {
  391. setTargetHotend1(plaPreheatHotendTemp);
  392. setTargetBed(plaPreheatHPBTemp);
  393. fanSpeed = plaPreheatFanSpeed;
  394. lcd_return_to_status();
  395. setWatch(); // heater sanity check timer
  396. }
  397. void lcd_preheat_abs1()
  398. {
  399. setTargetHotend1(absPreheatHotendTemp);
  400. setTargetBed(absPreheatHPBTemp);
  401. fanSpeed = absPreheatFanSpeed;
  402. lcd_return_to_status();
  403. setWatch(); // heater sanity check timer
  404. }
  405. #endif //2nd extruder preheat
  406. #if TEMP_SENSOR_2 != 0 //3 extruder preheat
  407. void lcd_preheat_pla2()
  408. {
  409. setTargetHotend2(plaPreheatHotendTemp);
  410. setTargetBed(plaPreheatHPBTemp);
  411. fanSpeed = plaPreheatFanSpeed;
  412. lcd_return_to_status();
  413. setWatch(); // heater sanity check timer
  414. }
  415. void lcd_preheat_abs2()
  416. {
  417. setTargetHotend2(absPreheatHotendTemp);
  418. setTargetBed(absPreheatHPBTemp);
  419. fanSpeed = absPreheatFanSpeed;
  420. lcd_return_to_status();
  421. setWatch(); // heater sanity check timer
  422. }
  423. #endif //3 extruder preheat
  424. #if TEMP_SENSOR_1 != 0 || TEMP_SENSOR_2 != 0 //more than one extruder present
  425. void lcd_preheat_pla012()
  426. {
  427. setTargetHotend0(plaPreheatHotendTemp);
  428. setTargetHotend1(plaPreheatHotendTemp);
  429. setTargetHotend2(plaPreheatHotendTemp);
  430. setTargetBed(plaPreheatHPBTemp);
  431. fanSpeed = plaPreheatFanSpeed;
  432. lcd_return_to_status();
  433. setWatch(); // heater sanity check timer
  434. }
  435. void lcd_preheat_abs012()
  436. {
  437. setTargetHotend0(absPreheatHotendTemp);
  438. setTargetHotend1(absPreheatHotendTemp);
  439. setTargetHotend2(absPreheatHotendTemp);
  440. setTargetBed(absPreheatHPBTemp);
  441. fanSpeed = absPreheatFanSpeed;
  442. lcd_return_to_status();
  443. setWatch(); // heater sanity check timer
  444. }
  445. #endif //more than one extruder present
  446. void lcd_preheat_pla_bedonly()
  447. {
  448. setTargetBed(plaPreheatHPBTemp);
  449. fanSpeed = plaPreheatFanSpeed;
  450. lcd_return_to_status();
  451. setWatch(); // heater sanity check timer
  452. }
  453. void lcd_preheat_abs_bedonly()
  454. {
  455. setTargetBed(absPreheatHPBTemp);
  456. fanSpeed = absPreheatFanSpeed;
  457. lcd_return_to_status();
  458. setWatch(); // heater sanity check timer
  459. }
  460. static void lcd_preheat_pla_menu()
  461. {
  462. START_MENU();
  463. MENU_ITEM(back, MSG_PREPARE, lcd_prepare_menu);
  464. MENU_ITEM(function, MSG_PREHEAT_PLA0, lcd_preheat_pla0);
  465. #if TEMP_SENSOR_1 != 0 //2 extruder preheat
  466. MENU_ITEM(function, MSG_PREHEAT_PLA1, lcd_preheat_pla1);
  467. #endif //2 extruder preheat
  468. #if TEMP_SENSOR_2 != 0 //3 extruder preheat
  469. MENU_ITEM(function, MSG_PREHEAT_PLA2, lcd_preheat_pla2);
  470. #endif //3 extruder preheat
  471. #if TEMP_SENSOR_1 != 0 || TEMP_SENSOR_2 != 0 //all extruder preheat
  472. MENU_ITEM(function, MSG_PREHEAT_PLA012, lcd_preheat_pla012);
  473. #endif //2 extruder preheat
  474. #if TEMP_SENSOR_BED != 0
  475. MENU_ITEM(function, MSG_PREHEAT_PLA_BEDONLY, lcd_preheat_pla_bedonly);
  476. #endif
  477. END_MENU();
  478. }
  479. static void lcd_preheat_abs_menu()
  480. {
  481. START_MENU();
  482. MENU_ITEM(back, MSG_PREPARE, lcd_prepare_menu);
  483. MENU_ITEM(function, MSG_PREHEAT_ABS0, lcd_preheat_abs0);
  484. #if TEMP_SENSOR_1 != 0 //2 extruder preheat
  485. MENU_ITEM(function, MSG_PREHEAT_ABS1, lcd_preheat_abs1);
  486. #endif //2 extruder preheat
  487. #if TEMP_SENSOR_2 != 0 //3 extruder preheat
  488. MENU_ITEM(function, MSG_PREHEAT_ABS2, lcd_preheat_abs2);
  489. #endif //3 extruder preheat
  490. #if TEMP_SENSOR_1 != 0 || TEMP_SENSOR_2 != 0 //all extruder preheat
  491. MENU_ITEM(function, MSG_PREHEAT_ABS012, lcd_preheat_abs012);
  492. #endif //2 extruder preheat
  493. #if TEMP_SENSOR_BED != 0
  494. MENU_ITEM(function, MSG_PREHEAT_ABS_BEDONLY, lcd_preheat_abs_bedonly);
  495. #endif
  496. END_MENU();
  497. }
  498. void lcd_cooldown()
  499. {
  500. setTargetHotend0(0);
  501. setTargetHotend1(0);
  502. setTargetHotend2(0);
  503. setTargetBed(0);
  504. fanSpeed = 0;
  505. lcd_return_to_status();
  506. }
  507. static void lcd_prepare_menu()
  508. {
  509. START_MENU();
  510. MENU_ITEM(back, MSG_MAIN, lcd_main_menu);
  511. #ifdef SDSUPPORT
  512. #ifdef MENU_ADDAUTOSTART
  513. MENU_ITEM(function, MSG_AUTOSTART, lcd_autostart_sd);
  514. #endif
  515. #endif
  516. MENU_ITEM(gcode, MSG_DISABLE_STEPPERS, PSTR("M84"));
  517. MENU_ITEM(gcode, MSG_AUTO_HOME, PSTR("G28"));
  518. MENU_ITEM(function, MSG_SET_HOME_OFFSETS, lcd_set_home_offsets);
  519. //MENU_ITEM(gcode, MSG_SET_ORIGIN, PSTR("G92 X0 Y0 Z0"));
  520. #if TEMP_SENSOR_0 != 0
  521. #if TEMP_SENSOR_1 != 0 || TEMP_SENSOR_2 != 0 || TEMP_SENSOR_BED != 0
  522. MENU_ITEM(submenu, MSG_PREHEAT_PLA, lcd_preheat_pla_menu);
  523. MENU_ITEM(submenu, MSG_PREHEAT_ABS, lcd_preheat_abs_menu);
  524. #else
  525. MENU_ITEM(function, MSG_PREHEAT_PLA, lcd_preheat_pla0);
  526. MENU_ITEM(function, MSG_PREHEAT_ABS, lcd_preheat_abs0);
  527. #endif
  528. #endif
  529. MENU_ITEM(function, MSG_COOLDOWN, lcd_cooldown);
  530. #if PS_ON_PIN > -1
  531. if (powersupply)
  532. {
  533. MENU_ITEM(gcode, MSG_SWITCH_PS_OFF, PSTR("M81"));
  534. }else{
  535. MENU_ITEM(gcode, MSG_SWITCH_PS_ON, PSTR("M80"));
  536. }
  537. #endif
  538. MENU_ITEM(submenu, MSG_MOVE_AXIS, lcd_move_menu);
  539. END_MENU();
  540. }
  541. float move_menu_scale;
  542. static void lcd_move_menu_axis();
  543. static void _lcd_move(const char *name, int axis, int min, int max) {
  544. if (encoderPosition != 0) {
  545. refresh_cmd_timeout();
  546. current_position[axis] += float((int)encoderPosition) * move_menu_scale;
  547. if (min_software_endstops && current_position[axis] < min) current_position[axis] = min;
  548. if (max_software_endstops && current_position[axis] > max) current_position[axis] = max;
  549. encoderPosition = 0;
  550. #ifdef DELTA
  551. calculate_delta(current_position);
  552. plan_buffer_line(delta[X_AXIS], delta[Y_AXIS], delta[Z_AXIS], current_position[E_AXIS], manual_feedrate[axis]/60, active_extruder);
  553. #else
  554. plan_buffer_line(current_position[X_AXIS], current_position[Y_AXIS], current_position[Z_AXIS], current_position[E_AXIS], manual_feedrate[axis]/60, active_extruder);
  555. #endif
  556. lcdDrawUpdate = 1;
  557. }
  558. if (lcdDrawUpdate) lcd_implementation_drawedit(name, ftostr31(current_position[axis]));
  559. if (LCD_CLICKED) lcd_goto_menu(lcd_move_menu_axis);
  560. }
  561. static void lcd_move_x() { _lcd_move(PSTR("X"), X_AXIS, X_MIN_POS, X_MAX_POS); }
  562. static void lcd_move_y() { _lcd_move(PSTR("Y"), Y_AXIS, Y_MIN_POS, Y_MAX_POS); }
  563. static void lcd_move_z() { _lcd_move(PSTR("Z"), Z_AXIS, Z_MIN_POS, Z_MAX_POS); }
  564. static void lcd_move_e()
  565. {
  566. if (encoderPosition != 0)
  567. {
  568. current_position[E_AXIS] += float((int)encoderPosition) * move_menu_scale;
  569. encoderPosition = 0;
  570. #ifdef DELTA
  571. calculate_delta(current_position);
  572. plan_buffer_line(delta[X_AXIS], delta[Y_AXIS], delta[Z_AXIS], current_position[E_AXIS], manual_feedrate[E_AXIS]/60, active_extruder);
  573. #else
  574. plan_buffer_line(current_position[X_AXIS], current_position[Y_AXIS], current_position[Z_AXIS], current_position[E_AXIS], manual_feedrate[E_AXIS]/60, active_extruder);
  575. #endif
  576. lcdDrawUpdate = 1;
  577. }
  578. if (lcdDrawUpdate)
  579. {
  580. lcd_implementation_drawedit(PSTR("Extruder"), ftostr31(current_position[E_AXIS]));
  581. }
  582. if (LCD_CLICKED) lcd_goto_menu(lcd_move_menu_axis);
  583. }
  584. static void lcd_move_menu_axis()
  585. {
  586. START_MENU();
  587. MENU_ITEM(back, MSG_MOVE_AXIS, lcd_move_menu);
  588. MENU_ITEM(submenu, MSG_MOVE_X, lcd_move_x);
  589. MENU_ITEM(submenu, MSG_MOVE_Y, lcd_move_y);
  590. if (move_menu_scale < 10.0)
  591. {
  592. MENU_ITEM(submenu, MSG_MOVE_Z, lcd_move_z);
  593. MENU_ITEM(submenu, MSG_MOVE_E, lcd_move_e);
  594. }
  595. END_MENU();
  596. }
  597. static void lcd_move_menu_10mm()
  598. {
  599. move_menu_scale = 10.0;
  600. lcd_move_menu_axis();
  601. }
  602. static void lcd_move_menu_1mm()
  603. {
  604. move_menu_scale = 1.0;
  605. lcd_move_menu_axis();
  606. }
  607. static void lcd_move_menu_01mm()
  608. {
  609. move_menu_scale = 0.1;
  610. lcd_move_menu_axis();
  611. }
  612. static void lcd_move_menu()
  613. {
  614. START_MENU();
  615. MENU_ITEM(back, MSG_PREPARE, lcd_prepare_menu);
  616. MENU_ITEM(submenu, MSG_MOVE_10MM, lcd_move_menu_10mm);
  617. MENU_ITEM(submenu, MSG_MOVE_1MM, lcd_move_menu_1mm);
  618. MENU_ITEM(submenu, MSG_MOVE_01MM, lcd_move_menu_01mm);
  619. //TODO:X,Y,Z,E
  620. END_MENU();
  621. }
  622. static void lcd_control_menu()
  623. {
  624. START_MENU();
  625. MENU_ITEM(back, MSG_MAIN, lcd_main_menu);
  626. MENU_ITEM(submenu, MSG_TEMPERATURE, lcd_control_temperature_menu);
  627. MENU_ITEM(submenu, MSG_MOTION, lcd_control_motion_menu);
  628. #ifdef DOGLCD
  629. // MENU_ITEM_EDIT(int3, MSG_CONTRAST, &lcd_contrast, 0, 63);
  630. MENU_ITEM(submenu, MSG_CONTRAST, lcd_set_contrast);
  631. #endif
  632. #ifdef FWRETRACT
  633. MENU_ITEM(submenu, MSG_RETRACT, lcd_control_retract_menu);
  634. #endif
  635. #ifdef EEPROM_SETTINGS
  636. MENU_ITEM(function, MSG_STORE_EPROM, Config_StoreSettings);
  637. MENU_ITEM(function, MSG_LOAD_EPROM, Config_RetrieveSettings);
  638. #endif
  639. MENU_ITEM(function, MSG_RESTORE_FAILSAFE, Config_ResetDefault);
  640. END_MENU();
  641. }
  642. static void lcd_control_temperature_menu()
  643. {
  644. #ifdef PIDTEMP
  645. // set up temp variables - undo the default scaling
  646. raw_Ki = unscalePID_i(Ki);
  647. raw_Kd = unscalePID_d(Kd);
  648. #endif
  649. START_MENU();
  650. MENU_ITEM(back, MSG_CONTROL, lcd_control_menu);
  651. #if TEMP_SENSOR_0 != 0
  652. MENU_ITEM_EDIT(int3, MSG_NOZZLE, &target_temperature[0], 0, HEATER_0_MAXTEMP - 15);
  653. #endif
  654. #if TEMP_SENSOR_1 != 0
  655. MENU_ITEM_EDIT(int3, MSG_NOZZLE1, &target_temperature[1], 0, HEATER_1_MAXTEMP - 15);
  656. #endif
  657. #if TEMP_SENSOR_2 != 0
  658. MENU_ITEM_EDIT(int3, MSG_NOZZLE2, &target_temperature[2], 0, HEATER_2_MAXTEMP - 15);
  659. #endif
  660. #if TEMP_SENSOR_BED != 0
  661. MENU_ITEM_EDIT(int3, MSG_BED, &target_temperature_bed, 0, BED_MAXTEMP - 15);
  662. #endif
  663. MENU_ITEM_EDIT(int3, MSG_FAN_SPEED, &fanSpeed, 0, 255);
  664. #if defined AUTOTEMP && (TEMP_SENSOR_0 != 0)
  665. MENU_ITEM_EDIT(bool, MSG_AUTOTEMP, &autotemp_enabled);
  666. MENU_ITEM_EDIT(float3, MSG_MIN, &autotemp_min, 0, HEATER_0_MAXTEMP - 15);
  667. MENU_ITEM_EDIT(float3, MSG_MAX, &autotemp_max, 0, HEATER_0_MAXTEMP - 15);
  668. MENU_ITEM_EDIT(float32, MSG_FACTOR, &autotemp_factor, 0.0, 1.0);
  669. #endif
  670. #ifdef PIDTEMP
  671. MENU_ITEM_EDIT(float52, MSG_PID_P, &Kp, 1, 9990);
  672. // i is typically a small value so allows values below 1
  673. MENU_ITEM_EDIT_CALLBACK(float52, MSG_PID_I, &raw_Ki, 0.01, 9990, copy_and_scalePID_i);
  674. MENU_ITEM_EDIT_CALLBACK(float52, MSG_PID_D, &raw_Kd, 1, 9990, copy_and_scalePID_d);
  675. # ifdef PID_ADD_EXTRUSION_RATE
  676. MENU_ITEM_EDIT(float3, MSG_PID_C, &Kc, 1, 9990);
  677. # endif//PID_ADD_EXTRUSION_RATE
  678. #endif//PIDTEMP
  679. MENU_ITEM(submenu, MSG_PREHEAT_PLA_SETTINGS, lcd_control_temperature_preheat_pla_settings_menu);
  680. MENU_ITEM(submenu, MSG_PREHEAT_ABS_SETTINGS, lcd_control_temperature_preheat_abs_settings_menu);
  681. END_MENU();
  682. }
  683. static void lcd_control_temperature_preheat_pla_settings_menu()
  684. {
  685. START_MENU();
  686. MENU_ITEM(back, MSG_TEMPERATURE, lcd_control_temperature_menu);
  687. MENU_ITEM_EDIT(int3, MSG_FAN_SPEED, &plaPreheatFanSpeed, 0, 255);
  688. #if TEMP_SENSOR_0 != 0
  689. MENU_ITEM_EDIT(int3, MSG_NOZZLE, &plaPreheatHotendTemp, 0, HEATER_0_MAXTEMP - 15);
  690. #endif
  691. #if TEMP_SENSOR_BED != 0
  692. MENU_ITEM_EDIT(int3, MSG_BED, &plaPreheatHPBTemp, 0, BED_MAXTEMP - 15);
  693. #endif
  694. #ifdef EEPROM_SETTINGS
  695. MENU_ITEM(function, MSG_STORE_EPROM, Config_StoreSettings);
  696. #endif
  697. END_MENU();
  698. }
  699. static void lcd_control_temperature_preheat_abs_settings_menu()
  700. {
  701. START_MENU();
  702. MENU_ITEM(back, MSG_TEMPERATURE, lcd_control_temperature_menu);
  703. MENU_ITEM_EDIT(int3, MSG_FAN_SPEED, &absPreheatFanSpeed, 0, 255);
  704. #if TEMP_SENSOR_0 != 0
  705. MENU_ITEM_EDIT(int3, MSG_NOZZLE, &absPreheatHotendTemp, 0, HEATER_0_MAXTEMP - 15);
  706. #endif
  707. #if TEMP_SENSOR_BED != 0
  708. MENU_ITEM_EDIT(int3, MSG_BED, &absPreheatHPBTemp, 0, BED_MAXTEMP - 15);
  709. #endif
  710. #ifdef EEPROM_SETTINGS
  711. MENU_ITEM(function, MSG_STORE_EPROM, Config_StoreSettings);
  712. #endif
  713. END_MENU();
  714. }
  715. static void lcd_control_motion_menu()
  716. {
  717. START_MENU();
  718. MENU_ITEM(back, MSG_CONTROL, lcd_control_menu);
  719. #ifdef ENABLE_AUTO_BED_LEVELING
  720. MENU_ITEM_EDIT(float32, MSG_ZPROBE_ZOFFSET, &zprobe_zoffset, 0.5, 50);
  721. #endif
  722. MENU_ITEM_EDIT(float5, MSG_ACC, &acceleration, 500, 99000);
  723. MENU_ITEM_EDIT(float3, MSG_VXY_JERK, &max_xy_jerk, 1, 990);
  724. MENU_ITEM_EDIT(float52, MSG_VZ_JERK, &max_z_jerk, 0.1, 990);
  725. MENU_ITEM_EDIT(float3, MSG_VE_JERK, &max_e_jerk, 1, 990);
  726. MENU_ITEM_EDIT(float3, MSG_VMAX MSG_X, &max_feedrate[X_AXIS], 1, 999);
  727. MENU_ITEM_EDIT(float3, MSG_VMAX MSG_Y, &max_feedrate[Y_AXIS], 1, 999);
  728. MENU_ITEM_EDIT(float3, MSG_VMAX MSG_Z, &max_feedrate[Z_AXIS], 1, 999);
  729. MENU_ITEM_EDIT(float3, MSG_VMAX MSG_E, &max_feedrate[E_AXIS], 1, 999);
  730. MENU_ITEM_EDIT(float3, MSG_VMIN, &minimumfeedrate, 0, 999);
  731. MENU_ITEM_EDIT(float3, MSG_VTRAV_MIN, &mintravelfeedrate, 0, 999);
  732. MENU_ITEM_EDIT_CALLBACK(long5, MSG_AMAX MSG_X, &max_acceleration_units_per_sq_second[X_AXIS], 100, 99000, reset_acceleration_rates);
  733. MENU_ITEM_EDIT_CALLBACK(long5, MSG_AMAX MSG_Y, &max_acceleration_units_per_sq_second[Y_AXIS], 100, 99000, reset_acceleration_rates);
  734. MENU_ITEM_EDIT_CALLBACK(long5, MSG_AMAX MSG_Z, &max_acceleration_units_per_sq_second[Z_AXIS], 100, 99000, reset_acceleration_rates);
  735. MENU_ITEM_EDIT_CALLBACK(long5, MSG_AMAX MSG_E, &max_acceleration_units_per_sq_second[E_AXIS], 100, 99000, reset_acceleration_rates);
  736. MENU_ITEM_EDIT(float5, MSG_A_RETRACT, &retract_acceleration, 100, 99000);
  737. MENU_ITEM_EDIT(float52, MSG_XSTEPS, &axis_steps_per_unit[X_AXIS], 5, 9999);
  738. MENU_ITEM_EDIT(float52, MSG_YSTEPS, &axis_steps_per_unit[Y_AXIS], 5, 9999);
  739. MENU_ITEM_EDIT(float51, MSG_ZSTEPS, &axis_steps_per_unit[Z_AXIS], 5, 9999);
  740. MENU_ITEM_EDIT(float51, MSG_ESTEPS, &axis_steps_per_unit[E_AXIS], 5, 9999);
  741. #ifdef ABORT_ON_ENDSTOP_HIT_FEATURE_ENABLED
  742. MENU_ITEM_EDIT(bool, MSG_ENDSTOP_ABORT, &abort_on_endstop_hit);
  743. #endif
  744. #ifdef SCARA
  745. MENU_ITEM_EDIT(float74, MSG_XSCALE, &axis_scaling[X_AXIS],0.5,2);
  746. MENU_ITEM_EDIT(float74, MSG_YSCALE, &axis_scaling[Y_AXIS],0.5,2);
  747. #endif
  748. END_MENU();
  749. }
  750. #ifdef DOGLCD
  751. static void lcd_set_contrast()
  752. {
  753. if (encoderPosition != 0)
  754. {
  755. lcd_contrast -= encoderPosition;
  756. if (lcd_contrast < 0) lcd_contrast = 0;
  757. else if (lcd_contrast > 63) lcd_contrast = 63;
  758. encoderPosition = 0;
  759. lcdDrawUpdate = 1;
  760. u8g.setContrast(lcd_contrast);
  761. }
  762. if (lcdDrawUpdate)
  763. {
  764. lcd_implementation_drawedit(PSTR(MSG_CONTRAST), itostr2(lcd_contrast));
  765. }
  766. if (LCD_CLICKED) lcd_goto_menu(lcd_control_menu);
  767. }
  768. #endif
  769. #ifdef FWRETRACT
  770. static void lcd_control_retract_menu()
  771. {
  772. START_MENU();
  773. MENU_ITEM(back, MSG_CONTROL, lcd_control_menu);
  774. MENU_ITEM_EDIT(bool, MSG_AUTORETRACT, &autoretract_enabled);
  775. MENU_ITEM_EDIT(float52, MSG_CONTROL_RETRACT, &retract_length, 0, 100);
  776. #if EXTRUDERS > 1
  777. MENU_ITEM_EDIT(float52, MSG_CONTROL_RETRACT_SWAP, &retract_length_swap, 0, 100);
  778. #endif
  779. MENU_ITEM_EDIT(float3, MSG_CONTROL_RETRACTF, &retract_feedrate, 1, 999);
  780. MENU_ITEM_EDIT(float52, MSG_CONTROL_RETRACT_ZLIFT, &retract_zlift, 0, 999);
  781. MENU_ITEM_EDIT(float52, MSG_CONTROL_RETRACT_RECOVER, &retract_recover_length, 0, 100);
  782. #if EXTRUDERS > 1
  783. MENU_ITEM_EDIT(float52, MSG_CONTROL_RETRACT_RECOVER_SWAP, &retract_recover_length_swap, 0, 100);
  784. #endif
  785. MENU_ITEM_EDIT(float3, MSG_CONTROL_RETRACT_RECOVERF, &retract_recover_feedrate, 1, 999);
  786. END_MENU();
  787. }
  788. #endif //FWRETRACT
  789. #if SDCARDDETECT == -1
  790. static void lcd_sd_refresh()
  791. {
  792. card.initsd();
  793. currentMenuViewOffset = 0;
  794. }
  795. #endif
  796. static void lcd_sd_updir()
  797. {
  798. card.updir();
  799. currentMenuViewOffset = 0;
  800. }
  801. void lcd_sdcard_menu()
  802. {
  803. if (lcdDrawUpdate == 0 && LCD_CLICKED == 0)
  804. return; // nothing to do (so don't thrash the SD card)
  805. uint16_t fileCnt = card.getnrfilenames();
  806. START_MENU();
  807. MENU_ITEM(back, MSG_MAIN, lcd_main_menu);
  808. card.getWorkDirName();
  809. if(card.filename[0]=='/')
  810. {
  811. #if SDCARDDETECT == -1
  812. MENU_ITEM(function, LCD_STR_REFRESH MSG_REFRESH, lcd_sd_refresh);
  813. #endif
  814. }else{
  815. MENU_ITEM(function, LCD_STR_FOLDER "..", lcd_sd_updir);
  816. }
  817. for(uint16_t i=0;i<fileCnt;i++)
  818. {
  819. if (_menuItemNr == _lineNr)
  820. {
  821. #ifndef SDCARD_RATHERRECENTFIRST
  822. card.getfilename(i);
  823. #else
  824. card.getfilename(fileCnt-1-i);
  825. #endif
  826. if (card.filenameIsDir)
  827. {
  828. MENU_ITEM(sddirectory, MSG_CARD_MENU, card.filename, card.longFilename);
  829. }else{
  830. MENU_ITEM(sdfile, MSG_CARD_MENU, card.filename, card.longFilename);
  831. }
  832. }else{
  833. MENU_ITEM_DUMMY();
  834. }
  835. }
  836. END_MENU();
  837. }
  838. #define menu_edit_type(_type, _name, _strFunc, scale) \
  839. void menu_edit_ ## _name () \
  840. { \
  841. if ((int32_t)encoderPosition < 0) \
  842. encoderPosition = 0; \
  843. if ((int32_t)encoderPosition > maxEditValue) \
  844. encoderPosition = maxEditValue; \
  845. if (lcdDrawUpdate) \
  846. lcd_implementation_drawedit(editLabel, _strFunc(((_type)((int32_t)encoderPosition + minEditValue)) / scale)); \
  847. if (LCD_CLICKED) \
  848. { \
  849. *((_type*)editValue) = ((_type)((int32_t)encoderPosition + minEditValue)) / scale; \
  850. lcd_goto_menu(prevMenu, prevEncoderPosition); \
  851. } \
  852. } \
  853. void menu_edit_callback_ ## _name () { \
  854. menu_edit_ ## _name (); \
  855. if (LCD_CLICKED) (*callbackFunc)(); \
  856. } \
  857. static void menu_action_setting_edit_ ## _name (const char* pstr, _type* ptr, _type minValue, _type maxValue) \
  858. { \
  859. prevMenu = currentMenu; \
  860. prevEncoderPosition = encoderPosition; \
  861. \
  862. lcdDrawUpdate = 2; \
  863. currentMenu = menu_edit_ ## _name; \
  864. \
  865. editLabel = pstr; \
  866. editValue = ptr; \
  867. minEditValue = minValue * scale; \
  868. maxEditValue = maxValue * scale - minEditValue; \
  869. encoderPosition = (*ptr) * scale - minEditValue; \
  870. }\
  871. static void menu_action_setting_edit_callback_ ## _name (const char* pstr, _type* ptr, _type minValue, _type maxValue, menuFunc_t callback) \
  872. { \
  873. prevMenu = currentMenu; \
  874. prevEncoderPosition = encoderPosition; \
  875. \
  876. lcdDrawUpdate = 2; \
  877. currentMenu = menu_edit_callback_ ## _name; \
  878. \
  879. editLabel = pstr; \
  880. editValue = ptr; \
  881. minEditValue = minValue * scale; \
  882. maxEditValue = maxValue * scale - minEditValue; \
  883. encoderPosition = (*ptr) * scale - minEditValue; \
  884. callbackFunc = callback;\
  885. }
  886. menu_edit_type(int, int3, itostr3, 1)
  887. menu_edit_type(float, float3, ftostr3, 1)
  888. menu_edit_type(float, float32, ftostr32, 100)
  889. menu_edit_type(float, float5, ftostr5, 0.01)
  890. menu_edit_type(float, float51, ftostr51, 10)
  891. menu_edit_type(float, float52, ftostr52, 100)
  892. menu_edit_type(unsigned long, long5, ftostr5, 0.01)
  893. #ifdef REPRAPWORLD_KEYPAD
  894. static void reprapworld_keypad_move_z_up() {
  895. encoderPosition = 1;
  896. move_menu_scale = REPRAPWORLD_KEYPAD_MOVE_STEP;
  897. lcd_move_z();
  898. }
  899. static void reprapworld_keypad_move_z_down() {
  900. encoderPosition = -1;
  901. move_menu_scale = REPRAPWORLD_KEYPAD_MOVE_STEP;
  902. lcd_move_z();
  903. }
  904. static void reprapworld_keypad_move_x_left() {
  905. encoderPosition = -1;
  906. move_menu_scale = REPRAPWORLD_KEYPAD_MOVE_STEP;
  907. lcd_move_x();
  908. }
  909. static void reprapworld_keypad_move_x_right() {
  910. encoderPosition = 1;
  911. move_menu_scale = REPRAPWORLD_KEYPAD_MOVE_STEP;
  912. lcd_move_x();
  913. }
  914. static void reprapworld_keypad_move_y_down() {
  915. encoderPosition = 1;
  916. move_menu_scale = REPRAPWORLD_KEYPAD_MOVE_STEP;
  917. lcd_move_y();
  918. }
  919. static void reprapworld_keypad_move_y_up() {
  920. encoderPosition = -1;
  921. move_menu_scale = REPRAPWORLD_KEYPAD_MOVE_STEP;
  922. lcd_move_y();
  923. }
  924. static void reprapworld_keypad_move_home() {
  925. enquecommand_P((PSTR("G28"))); // move all axis home
  926. }
  927. #endif
  928. /** End of menus **/
  929. static void lcd_quick_feedback()
  930. {
  931. lcdDrawUpdate = 2;
  932. blocking_enc = millis() + 500;
  933. lcd_implementation_quick_feedback();
  934. }
  935. /** Menu action functions **/
  936. static void menu_action_back(menuFunc_t data) { lcd_goto_menu(data); }
  937. static void menu_action_submenu(menuFunc_t data) { lcd_goto_menu(data); }
  938. static void menu_action_gcode(const char* pgcode) { enquecommand_P(pgcode); }
  939. static void menu_action_function(menuFunc_t data) { (*data)(); }
  940. static void menu_action_sdfile(const char* filename, char* longFilename)
  941. {
  942. char cmd[30];
  943. char* c;
  944. sprintf_P(cmd, PSTR("M23 %s"), filename);
  945. for(c = &cmd[4]; *c; c++)
  946. *c = tolower(*c);
  947. enquecommand(cmd);
  948. enquecommand_P(PSTR("M24"));
  949. lcd_return_to_status();
  950. }
  951. static void menu_action_sddirectory(const char* filename, char* longFilename)
  952. {
  953. card.chdir(filename);
  954. encoderPosition = 0;
  955. }
  956. static void menu_action_setting_edit_bool(const char* pstr, bool* ptr)
  957. {
  958. *ptr = !(*ptr);
  959. }
  960. #endif//ULTIPANEL
  961. /** LCD API **/
  962. void lcd_init()
  963. {
  964. lcd_implementation_init();
  965. #ifdef NEWPANEL
  966. pinMode(BTN_EN1,INPUT);
  967. pinMode(BTN_EN2,INPUT);
  968. WRITE(BTN_EN1,HIGH);
  969. WRITE(BTN_EN2,HIGH);
  970. #if BTN_ENC > 0
  971. pinMode(BTN_ENC,INPUT);
  972. WRITE(BTN_ENC,HIGH);
  973. #endif
  974. #ifdef REPRAPWORLD_KEYPAD
  975. pinMode(SHIFT_CLK,OUTPUT);
  976. pinMode(SHIFT_LD,OUTPUT);
  977. pinMode(SHIFT_OUT,INPUT);
  978. WRITE(SHIFT_OUT,HIGH);
  979. WRITE(SHIFT_LD,HIGH);
  980. #endif
  981. #else // Not NEWPANEL
  982. #ifdef SR_LCD_2W_NL // Non latching 2 wire shift register
  983. pinMode (SR_DATA_PIN, OUTPUT);
  984. pinMode (SR_CLK_PIN, OUTPUT);
  985. #elif defined(SHIFT_CLK)
  986. pinMode(SHIFT_CLK,OUTPUT);
  987. pinMode(SHIFT_LD,OUTPUT);
  988. pinMode(SHIFT_EN,OUTPUT);
  989. pinMode(SHIFT_OUT,INPUT);
  990. WRITE(SHIFT_OUT,HIGH);
  991. WRITE(SHIFT_LD,HIGH);
  992. WRITE(SHIFT_EN,LOW);
  993. #else
  994. #ifdef ULTIPANEL
  995. #error ULTIPANEL requires an encoder
  996. #endif
  997. #endif // SR_LCD_2W_NL
  998. #endif//!NEWPANEL
  999. #if defined (SDSUPPORT) && defined(SDCARDDETECT) && (SDCARDDETECT > 0)
  1000. pinMode(SDCARDDETECT,INPUT);
  1001. WRITE(SDCARDDETECT, HIGH);
  1002. lcd_oldcardstatus = IS_SD_INSERTED;
  1003. #endif//(SDCARDDETECT > 0)
  1004. #ifdef LCD_HAS_SLOW_BUTTONS
  1005. slow_buttons = 0;
  1006. #endif
  1007. lcd_buttons_update();
  1008. #ifdef ULTIPANEL
  1009. encoderDiff = 0;
  1010. #endif
  1011. }
  1012. void lcd_update()
  1013. {
  1014. static unsigned long timeoutToStatus = 0;
  1015. #ifdef LCD_HAS_SLOW_BUTTONS
  1016. slow_buttons = lcd_implementation_read_slow_buttons(); // buttons which take too long to read in interrupt context
  1017. #endif
  1018. lcd_buttons_update();
  1019. #if (SDCARDDETECT > 0)
  1020. if((IS_SD_INSERTED != lcd_oldcardstatus && lcd_detected()))
  1021. {
  1022. lcdDrawUpdate = 2;
  1023. lcd_oldcardstatus = IS_SD_INSERTED;
  1024. lcd_implementation_init(); // to maybe revive the LCD if static electricity killed it.
  1025. if(lcd_oldcardstatus)
  1026. {
  1027. card.initsd();
  1028. LCD_MESSAGEPGM(MSG_SD_INSERTED);
  1029. }
  1030. else
  1031. {
  1032. card.release();
  1033. LCD_MESSAGEPGM(MSG_SD_REMOVED);
  1034. }
  1035. }
  1036. #endif//CARDINSERTED
  1037. if (lcd_next_update_millis < millis())
  1038. {
  1039. #ifdef ULTIPANEL
  1040. #ifdef REPRAPWORLD_KEYPAD
  1041. if (REPRAPWORLD_KEYPAD_MOVE_Z_UP) {
  1042. reprapworld_keypad_move_z_up();
  1043. }
  1044. if (REPRAPWORLD_KEYPAD_MOVE_Z_DOWN) {
  1045. reprapworld_keypad_move_z_down();
  1046. }
  1047. if (REPRAPWORLD_KEYPAD_MOVE_X_LEFT) {
  1048. reprapworld_keypad_move_x_left();
  1049. }
  1050. if (REPRAPWORLD_KEYPAD_MOVE_X_RIGHT) {
  1051. reprapworld_keypad_move_x_right();
  1052. }
  1053. if (REPRAPWORLD_KEYPAD_MOVE_Y_DOWN) {
  1054. reprapworld_keypad_move_y_down();
  1055. }
  1056. if (REPRAPWORLD_KEYPAD_MOVE_Y_UP) {
  1057. reprapworld_keypad_move_y_up();
  1058. }
  1059. if (REPRAPWORLD_KEYPAD_MOVE_HOME) {
  1060. reprapworld_keypad_move_home();
  1061. }
  1062. #endif
  1063. if (abs(encoderDiff) >= ENCODER_PULSES_PER_STEP)
  1064. {
  1065. lcdDrawUpdate = 1;
  1066. encoderPosition += encoderDiff / ENCODER_PULSES_PER_STEP;
  1067. encoderDiff = 0;
  1068. timeoutToStatus = millis() + LCD_TIMEOUT_TO_STATUS;
  1069. }
  1070. if (LCD_CLICKED)
  1071. timeoutToStatus = millis() + LCD_TIMEOUT_TO_STATUS;
  1072. #endif//ULTIPANEL
  1073. #ifdef DOGLCD // Changes due to different driver architecture of the DOGM display
  1074. blink++; // Variable for fan animation and alive dot
  1075. u8g.firstPage();
  1076. do
  1077. {
  1078. u8g.setFont(u8g_font_6x10_marlin);
  1079. u8g.setPrintPos(125,0);
  1080. if (blink % 2) u8g.setColorIndex(1); else u8g.setColorIndex(0); // Set color for the alive dot
  1081. u8g.drawPixel(127,63); // draw alive dot
  1082. u8g.setColorIndex(1); // black on white
  1083. (*currentMenu)();
  1084. if (!lcdDrawUpdate) break; // Terminate display update, when nothing new to draw. This must be done before the last dogm.next()
  1085. } while( u8g.nextPage() );
  1086. #else
  1087. (*currentMenu)();
  1088. #endif
  1089. #ifdef LCD_HAS_STATUS_INDICATORS
  1090. lcd_implementation_update_indicators();
  1091. #endif
  1092. #ifdef ULTIPANEL
  1093. if(timeoutToStatus < millis() && currentMenu != lcd_status_screen)
  1094. {
  1095. lcd_return_to_status();
  1096. lcdDrawUpdate = 2;
  1097. }
  1098. #endif//ULTIPANEL
  1099. if (lcdDrawUpdate == 2)
  1100. lcd_implementation_clear();
  1101. if (lcdDrawUpdate)
  1102. lcdDrawUpdate--;
  1103. lcd_next_update_millis = millis() + LCD_UPDATE_INTERVAL;
  1104. }
  1105. }
  1106. void lcd_ignore_click(bool b)
  1107. {
  1108. ignore_click = b;
  1109. wait_for_unclick = false;
  1110. }
  1111. void lcd_setstatus(const char* message)
  1112. {
  1113. if (lcd_status_message_level > 0)
  1114. return;
  1115. strncpy(lcd_status_message, message, LCD_WIDTH);
  1116. size_t i = strlen(lcd_status_message);
  1117. memset(lcd_status_message + i, ' ', LCD_WIDTH - i);
  1118. lcd_status_message[LCD_WIDTH] = '\0';
  1119. lcdDrawUpdate = 2;
  1120. #ifdef FILAMENT_LCD_DISPLAY
  1121. message_millis=millis(); //get status message to show up for a while
  1122. #endif
  1123. }
  1124. void lcd_setstatuspgm(const char* message)
  1125. {
  1126. if (lcd_status_message_level > 0)
  1127. return;
  1128. strncpy_P(lcd_status_message, message, LCD_WIDTH);
  1129. size_t i = strlen(lcd_status_message);
  1130. memset(lcd_status_message + i, ' ', LCD_WIDTH - i);
  1131. lcd_status_message[LCD_WIDTH] = '\0';
  1132. lcdDrawUpdate = 2;
  1133. #ifdef FILAMENT_LCD_DISPLAY
  1134. message_millis=millis(); //get status message to show up for a while
  1135. #endif
  1136. }
  1137. void lcd_setalertstatuspgm(const char* message)
  1138. {
  1139. lcd_setstatuspgm(message);
  1140. lcd_status_message_level = 1;
  1141. #ifdef ULTIPANEL
  1142. lcd_return_to_status();
  1143. #endif//ULTIPANEL
  1144. }
  1145. void lcd_reset_alert_level()
  1146. {
  1147. lcd_status_message_level = 0;
  1148. }
  1149. #ifdef DOGLCD
  1150. void lcd_setcontrast(uint8_t value)
  1151. {
  1152. lcd_contrast = value & 63;
  1153. u8g.setContrast(lcd_contrast);
  1154. }
  1155. #endif
  1156. #ifdef ULTIPANEL
  1157. /* Warning: This function is called from interrupt context */
  1158. void lcd_buttons_update()
  1159. {
  1160. #ifdef NEWPANEL
  1161. uint8_t newbutton=0;
  1162. if(READ(BTN_EN1)==0) newbutton|=EN_A;
  1163. if(READ(BTN_EN2)==0) newbutton|=EN_B;
  1164. #if BTN_ENC > 0
  1165. if((blocking_enc<millis()) && (READ(BTN_ENC)==0))
  1166. newbutton |= EN_C;
  1167. #endif
  1168. buttons = newbutton;
  1169. #ifdef LCD_HAS_SLOW_BUTTONS
  1170. buttons |= slow_buttons;
  1171. #endif
  1172. #ifdef REPRAPWORLD_KEYPAD
  1173. // for the reprapworld_keypad
  1174. uint8_t newbutton_reprapworld_keypad=0;
  1175. WRITE(SHIFT_LD,LOW);
  1176. WRITE(SHIFT_LD,HIGH);
  1177. for(int8_t i=0;i<8;i++) {
  1178. newbutton_reprapworld_keypad = newbutton_reprapworld_keypad>>1;
  1179. if(READ(SHIFT_OUT))
  1180. newbutton_reprapworld_keypad|=(1<<7);
  1181. WRITE(SHIFT_CLK,HIGH);
  1182. WRITE(SHIFT_CLK,LOW);
  1183. }
  1184. buttons_reprapworld_keypad=~newbutton_reprapworld_keypad; //invert it, because a pressed switch produces a logical 0
  1185. #endif
  1186. #else //read it from the shift register
  1187. uint8_t newbutton=0;
  1188. WRITE(SHIFT_LD,LOW);
  1189. WRITE(SHIFT_LD,HIGH);
  1190. unsigned char tmp_buttons=0;
  1191. for(int8_t i=0;i<8;i++)
  1192. {
  1193. newbutton = newbutton>>1;
  1194. if(READ(SHIFT_OUT))
  1195. newbutton|=(1<<7);
  1196. WRITE(SHIFT_CLK,HIGH);
  1197. WRITE(SHIFT_CLK,LOW);
  1198. }
  1199. buttons=~newbutton; //invert it, because a pressed switch produces a logical 0
  1200. #endif//!NEWPANEL
  1201. //manage encoder rotation
  1202. uint8_t enc=0;
  1203. if (buttons & EN_A) enc |= B01;
  1204. if (buttons & EN_B) enc |= B10;
  1205. if(enc != lastEncoderBits)
  1206. {
  1207. switch(enc)
  1208. {
  1209. case encrot0:
  1210. if(lastEncoderBits==encrot3)
  1211. encoderDiff++;
  1212. else if(lastEncoderBits==encrot1)
  1213. encoderDiff--;
  1214. break;
  1215. case encrot1:
  1216. if(lastEncoderBits==encrot0)
  1217. encoderDiff++;
  1218. else if(lastEncoderBits==encrot2)
  1219. encoderDiff--;
  1220. break;
  1221. case encrot2:
  1222. if(lastEncoderBits==encrot1)
  1223. encoderDiff++;
  1224. else if(lastEncoderBits==encrot3)
  1225. encoderDiff--;
  1226. break;
  1227. case encrot3:
  1228. if(lastEncoderBits==encrot2)
  1229. encoderDiff++;
  1230. else if(lastEncoderBits==encrot0)
  1231. encoderDiff--;
  1232. break;
  1233. }
  1234. }
  1235. lastEncoderBits = enc;
  1236. }
  1237. bool lcd_detected(void)
  1238. {
  1239. #if (defined(LCD_I2C_TYPE_MCP23017) || defined(LCD_I2C_TYPE_MCP23008)) && defined(DETECT_DEVICE)
  1240. return lcd.LcdDetected() == 1;
  1241. #else
  1242. return true;
  1243. #endif
  1244. }
  1245. void lcd_buzz(long duration, uint16_t freq)
  1246. {
  1247. #ifdef LCD_USE_I2C_BUZZER
  1248. lcd.buzz(duration,freq);
  1249. #endif
  1250. }
  1251. bool lcd_clicked()
  1252. {
  1253. return LCD_CLICKED;
  1254. }
  1255. #endif//ULTIPANEL
  1256. /********************************/
  1257. /** Float conversion utilities **/
  1258. /********************************/
  1259. // convert float to string with +123.4 format
  1260. char conv[8];
  1261. char *ftostr3(const float &x)
  1262. {
  1263. return itostr3((int)x);
  1264. }
  1265. char *itostr2(const uint8_t &x)
  1266. {
  1267. //sprintf(conv,"%5.1f",x);
  1268. int xx=x;
  1269. conv[0]=(xx/10)%10+'0';
  1270. conv[1]=(xx)%10+'0';
  1271. conv[2]=0;
  1272. return conv;
  1273. }
  1274. // convert float to string with +123.4 format
  1275. char *ftostr31(const float &x)
  1276. {
  1277. int xx=x*10;
  1278. conv[0]=(xx>=0)?'+':'-';
  1279. xx=abs(xx);
  1280. conv[1]=(xx/1000)%10+'0';
  1281. conv[2]=(xx/100)%10+'0';
  1282. conv[3]=(xx/10)%10+'0';
  1283. conv[4]='.';
  1284. conv[5]=(xx)%10+'0';
  1285. conv[6]=0;
  1286. return conv;
  1287. }
  1288. // convert float to string with 123.4 format
  1289. char *ftostr31ns(const float &x)
  1290. {
  1291. int xx=x*10;
  1292. //conv[0]=(xx>=0)?'+':'-';
  1293. xx=abs(xx);
  1294. conv[0]=(xx/1000)%10+'0';
  1295. conv[1]=(xx/100)%10+'0';
  1296. conv[2]=(xx/10)%10+'0';
  1297. conv[3]='.';
  1298. conv[4]=(xx)%10+'0';
  1299. conv[5]=0;
  1300. return conv;
  1301. }
  1302. char *ftostr32(const float &x)
  1303. {
  1304. long xx=x*100;
  1305. if (xx >= 0)
  1306. conv[0]=(xx/10000)%10+'0';
  1307. else
  1308. conv[0]='-';
  1309. xx=abs(xx);
  1310. conv[1]=(xx/1000)%10+'0';
  1311. conv[2]=(xx/100)%10+'0';
  1312. conv[3]='.';
  1313. conv[4]=(xx/10)%10+'0';
  1314. conv[5]=(xx)%10+'0';
  1315. conv[6]=0;
  1316. return conv;
  1317. }
  1318. //Float to string with 1.23 format
  1319. char *ftostr12ns(const float &x)
  1320. {
  1321. long xx=x*100;
  1322. xx=abs(xx);
  1323. conv[0]=(xx/100)%10+'0';
  1324. conv[1]='.';
  1325. conv[2]=(xx/10)%10+'0';
  1326. conv[3]=(xx)%10+'0';
  1327. conv[4]=0;
  1328. return conv;
  1329. }
  1330. char *itostr31(const int &xx)
  1331. {
  1332. conv[0]=(xx>=0)?'+':'-';
  1333. conv[1]=(xx/1000)%10+'0';
  1334. conv[2]=(xx/100)%10+'0';
  1335. conv[3]=(xx/10)%10+'0';
  1336. conv[4]='.';
  1337. conv[5]=(xx)%10+'0';
  1338. conv[6]=0;
  1339. return conv;
  1340. }
  1341. // Convert int to rj string with 123 or -12 format
  1342. char *itostr3(const int &x)
  1343. {
  1344. int xx = x;
  1345. if (xx < 0) {
  1346. conv[0]='-';
  1347. xx = -xx;
  1348. } else if (xx >= 100)
  1349. conv[0]=(xx/100)%10+'0';
  1350. else
  1351. conv[0]=' ';
  1352. if (xx >= 10)
  1353. conv[1]=(xx/10)%10+'0';
  1354. else
  1355. conv[1]=' ';
  1356. conv[2]=(xx)%10+'0';
  1357. conv[3]=0;
  1358. return conv;
  1359. }
  1360. char *itostr3left(const int &xx)
  1361. {
  1362. if (xx >= 100)
  1363. {
  1364. conv[0]=(xx/100)%10+'0';
  1365. conv[1]=(xx/10)%10+'0';
  1366. conv[2]=(xx)%10+'0';
  1367. conv[3]=0;
  1368. }
  1369. else if (xx >= 10)
  1370. {
  1371. conv[0]=(xx/10)%10+'0';
  1372. conv[1]=(xx)%10+'0';
  1373. conv[2]=0;
  1374. }
  1375. else
  1376. {
  1377. conv[0]=(xx)%10+'0';
  1378. conv[1]=0;
  1379. }
  1380. return conv;
  1381. }
  1382. // Convert int to rj string with 1234 format
  1383. char *itostr4(const int &xx) {
  1384. conv[0] = xx >= 1000 ? (xx / 1000) % 10 + '0' : ' ';
  1385. conv[1] = xx >= 100 ? (xx / 100) % 10 + '0' : ' ';
  1386. conv[2] = xx >= 10 ? (xx / 10) % 10 + '0' : ' ';
  1387. conv[3] = xx % 10 + '0';
  1388. conv[4] = 0;
  1389. return conv;
  1390. }
  1391. // convert float to rj string with 12345 format
  1392. char *ftostr5(const float &x) {
  1393. long xx = abs(x);
  1394. conv[0] = xx >= 10000 ? (xx / 10000) % 10 + '0' : ' ';
  1395. conv[1] = xx >= 1000 ? (xx / 1000) % 10 + '0' : ' ';
  1396. conv[2] = xx >= 100 ? (xx / 100) % 10 + '0' : ' ';
  1397. conv[3] = xx >= 10 ? (xx / 10) % 10 + '0' : ' ';
  1398. conv[4] = xx % 10 + '0';
  1399. conv[5] = 0;
  1400. return conv;
  1401. }
  1402. // convert float to string with +1234.5 format
  1403. char *ftostr51(const float &x)
  1404. {
  1405. long xx=x*10;
  1406. conv[0]=(xx>=0)?'+':'-';
  1407. xx=abs(xx);
  1408. conv[1]=(xx/10000)%10+'0';
  1409. conv[2]=(xx/1000)%10+'0';
  1410. conv[3]=(xx/100)%10+'0';
  1411. conv[4]=(xx/10)%10+'0';
  1412. conv[5]='.';
  1413. conv[6]=(xx)%10+'0';
  1414. conv[7]=0;
  1415. return conv;
  1416. }
  1417. // convert float to string with +123.45 format
  1418. char *ftostr52(const float &x)
  1419. {
  1420. long xx=x*100;
  1421. conv[0]=(xx>=0)?'+':'-';
  1422. xx=abs(xx);
  1423. conv[1]=(xx/10000)%10+'0';
  1424. conv[2]=(xx/1000)%10+'0';
  1425. conv[3]=(xx/100)%10+'0';
  1426. conv[4]='.';
  1427. conv[5]=(xx/10)%10+'0';
  1428. conv[6]=(xx)%10+'0';
  1429. conv[7]=0;
  1430. return conv;
  1431. }
  1432. // Callback for after editing PID i value
  1433. // grab the PID i value out of the temp variable; scale it; then update the PID driver
  1434. void copy_and_scalePID_i()
  1435. {
  1436. #ifdef PIDTEMP
  1437. Ki = scalePID_i(raw_Ki);
  1438. updatePID();
  1439. #endif
  1440. }
  1441. // Callback for after editing PID d value
  1442. // grab the PID d value out of the temp variable; scale it; then update the PID driver
  1443. void copy_and_scalePID_d()
  1444. {
  1445. #ifdef PIDTEMP
  1446. Kd = scalePID_d(raw_Kd);
  1447. updatePID();
  1448. #endif
  1449. }
  1450. #endif //ULTRA_LCD