ultralcd.cpp 128 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911
  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. #include <string.h>
  11. #include "util.h"
  12. #include "mesh_bed_leveling.h"
  13. //#include "Configuration.h"
  14. #include "SdFatUtil.h"
  15. #define _STRINGIFY(s) #s
  16. int8_t encoderDiff; /* encoderDiff is updated from interrupt context and added to encoderPosition every LCD update */
  17. extern int lcd_change_fil_state;
  18. //Function pointer to menu functions.
  19. typedef void (*menuFunc_t)();
  20. static void lcd_sd_updir();
  21. struct EditMenuParentState
  22. {
  23. //prevMenu and prevEncoderPosition are used to store the previous menu location when editing settings.
  24. menuFunc_t prevMenu;
  25. uint16_t prevEncoderPosition;
  26. //Variables used when editing values.
  27. const char* editLabel;
  28. void* editValue;
  29. int32_t minEditValue, maxEditValue;
  30. // menuFunc_t callbackFunc;
  31. };
  32. union MenuData
  33. {
  34. struct BabyStep
  35. {
  36. // 29B total
  37. int8_t status;
  38. int babystepMem[3];
  39. float babystepMemMM[3];
  40. } babyStep;
  41. struct SupportMenu
  42. {
  43. // 6B+16B=22B total
  44. int8_t status;
  45. bool is_flash_air;
  46. uint8_t ip[4];
  47. char ip_str[3*4+3+1];
  48. } supportMenu;
  49. struct AdjustBed
  50. {
  51. // 6+13+16=35B
  52. // editMenuParentState is used when an edit menu is entered, so it knows
  53. // the return menu and encoder state.
  54. struct EditMenuParentState editMenuParentState;
  55. int8_t status;
  56. int8_t left;
  57. int8_t right;
  58. int8_t front;
  59. int8_t rear;
  60. int left2;
  61. int right2;
  62. int front2;
  63. int rear2;
  64. } adjustBed;
  65. // editMenuParentState is used when an edit menu is entered, so it knows
  66. // the return menu and encoder state.
  67. struct EditMenuParentState editMenuParentState;
  68. };
  69. // State of the currently active menu.
  70. // C Union manages sharing of the static memory by all the menus.
  71. union MenuData menuData = { 0 };
  72. union Data
  73. {
  74. byte b[2];
  75. int value;
  76. };
  77. int8_t ReInitLCD = 0;
  78. int8_t SDscrool = 0;
  79. int8_t SilentModeMenu = 0;
  80. int lcd_commands_type=LCD_COMMAND_IDLE;
  81. int lcd_commands_step=0;
  82. bool isPrintPaused = false;
  83. bool farm_mode = false;
  84. int farm_no = 0;
  85. int farm_timer = 30;
  86. int farm_status = 0;
  87. bool menuExiting = false;
  88. #ifdef FILAMENT_LCD_DISPLAY
  89. unsigned long message_millis = 0;
  90. #endif
  91. #ifdef ULTIPANEL
  92. static float manual_feedrate[] = MANUAL_FEEDRATE;
  93. #endif // ULTIPANEL
  94. /* !Configuration settings */
  95. uint8_t lcd_status_message_level;
  96. char lcd_status_message[LCD_WIDTH + 1] = ""; //////WELCOME!
  97. unsigned char firstrun = 1;
  98. #ifdef DOGLCD
  99. #include "dogm_lcd_implementation.h"
  100. #else
  101. #include "ultralcd_implementation_hitachi_HD44780.h"
  102. #endif
  103. /** forward declarations **/
  104. // void copy_and_scalePID_i();
  105. // void copy_and_scalePID_d();
  106. /* Different menus */
  107. static void lcd_status_screen();
  108. #ifdef ULTIPANEL
  109. extern bool powersupply;
  110. static void lcd_main_menu();
  111. static void lcd_tune_menu();
  112. static void lcd_prepare_menu();
  113. static void lcd_move_menu();
  114. static void lcd_settings_menu();
  115. static void lcd_calibration_menu();
  116. static void lcd_language_menu();
  117. static void lcd_control_temperature_menu();
  118. static void lcd_control_temperature_preheat_pla_settings_menu();
  119. static void lcd_control_temperature_preheat_abs_settings_menu();
  120. static void lcd_control_motion_menu();
  121. static void lcd_control_volumetric_menu();
  122. static void prusa_stat_printerstatus(int _status);
  123. static void prusa_stat_temperatures();
  124. static void prusa_stat_printinfo();
  125. static void lcd_farm_no();
  126. #ifdef DOGLCD
  127. static void lcd_set_contrast();
  128. #endif
  129. static void lcd_control_retract_menu();
  130. static void lcd_sdcard_menu();
  131. #ifdef DELTA_CALIBRATION_MENU
  132. static void lcd_delta_calibrate_menu();
  133. #endif // DELTA_CALIBRATION_MENU
  134. static void lcd_quick_feedback();//Cause an LCD refresh, and give the user visual or audible feedback that something has happened
  135. /* Different types of actions that can be used in menu items. */
  136. static void menu_action_back(menuFunc_t data);
  137. #define menu_action_back_RAM menu_action_back
  138. static void menu_action_submenu(menuFunc_t data);
  139. static void menu_action_gcode(const char* pgcode);
  140. static void menu_action_function(menuFunc_t data);
  141. static void menu_action_setlang(unsigned char lang);
  142. static void menu_action_sdfile(const char* filename, char* longFilename);
  143. static void menu_action_sddirectory(const char* filename, char* longFilename);
  144. static void menu_action_setting_edit_bool(const char* pstr, bool* ptr);
  145. static void menu_action_setting_edit_int3(const char* pstr, int* ptr, int minValue, int maxValue);
  146. static void menu_action_setting_edit_float3(const char* pstr, float* ptr, float minValue, float maxValue);
  147. static void menu_action_setting_edit_float32(const char* pstr, float* ptr, float minValue, float maxValue);
  148. static void menu_action_setting_edit_float43(const char* pstr, float* ptr, float minValue, float maxValue);
  149. static void menu_action_setting_edit_float5(const char* pstr, float* ptr, float minValue, float maxValue);
  150. static void menu_action_setting_edit_float51(const char* pstr, float* ptr, float minValue, float maxValue);
  151. static void menu_action_setting_edit_float52(const char* pstr, float* ptr, float minValue, float maxValue);
  152. static void menu_action_setting_edit_long5(const char* pstr, unsigned long* ptr, unsigned long minValue, unsigned long maxValue);
  153. /*
  154. static void menu_action_setting_edit_callback_bool(const char* pstr, bool* ptr, menuFunc_t callbackFunc);
  155. static void menu_action_setting_edit_callback_int3(const char* pstr, int* ptr, int minValue, int maxValue, menuFunc_t callbackFunc);
  156. static void menu_action_setting_edit_callback_float3(const char* pstr, float* ptr, float minValue, float maxValue, menuFunc_t callbackFunc);
  157. static void menu_action_setting_edit_callback_float32(const char* pstr, float* ptr, float minValue, float maxValue, menuFunc_t callbackFunc);
  158. static void menu_action_setting_edit_callback_float43(const char* pstr, float* ptr, float minValue, float maxValue, menuFunc_t callbackFunc);
  159. static void menu_action_setting_edit_callback_float5(const char* pstr, float* ptr, float minValue, float maxValue, menuFunc_t callbackFunc);
  160. static void menu_action_setting_edit_callback_float51(const char* pstr, float* ptr, float minValue, float maxValue, menuFunc_t callbackFunc);
  161. static void menu_action_setting_edit_callback_float52(const char* pstr, float* ptr, float minValue, float maxValue, menuFunc_t callbackFunc);
  162. static void menu_action_setting_edit_callback_long5(const char* pstr, unsigned long* ptr, unsigned long minValue, unsigned long maxValue, menuFunc_t callbackFunc);
  163. */
  164. #define ENCODER_FEEDRATE_DEADZONE 10
  165. #if !defined(LCD_I2C_VIKI)
  166. #ifndef ENCODER_STEPS_PER_MENU_ITEM
  167. #define ENCODER_STEPS_PER_MENU_ITEM 5
  168. #endif
  169. #ifndef ENCODER_PULSES_PER_STEP
  170. #define ENCODER_PULSES_PER_STEP 1
  171. #endif
  172. #else
  173. #ifndef ENCODER_STEPS_PER_MENU_ITEM
  174. #define ENCODER_STEPS_PER_MENU_ITEM 2 // VIKI LCD rotary encoder uses a different number of steps per rotation
  175. #endif
  176. #ifndef ENCODER_PULSES_PER_STEP
  177. #define ENCODER_PULSES_PER_STEP 1
  178. #endif
  179. #endif
  180. /* Helper macros for menus */
  181. #define START_MENU() do { \
  182. if (encoderPosition > 0x8000) encoderPosition = 0; \
  183. if (encoderPosition / ENCODER_STEPS_PER_MENU_ITEM < currentMenuViewOffset) currentMenuViewOffset = encoderPosition / ENCODER_STEPS_PER_MENU_ITEM;\
  184. uint8_t _lineNr = currentMenuViewOffset, _menuItemNr; \
  185. bool wasClicked = LCD_CLICKED;\
  186. for(uint8_t _drawLineNr = 0; _drawLineNr < LCD_HEIGHT; _drawLineNr++, _lineNr++) { \
  187. _menuItemNr = 0;
  188. #define MENU_ITEM(type, label, args...) do { \
  189. if (_menuItemNr == _lineNr) { \
  190. if (lcdDrawUpdate) { \
  191. const char* _label_pstr = (label); \
  192. if ((encoderPosition / ENCODER_STEPS_PER_MENU_ITEM) == _menuItemNr) { \
  193. lcd_implementation_drawmenu_ ## type ## _selected (_drawLineNr, _label_pstr , ## args ); \
  194. }else{\
  195. lcd_implementation_drawmenu_ ## type (_drawLineNr, _label_pstr , ## args ); \
  196. }\
  197. }\
  198. if (wasClicked && (encoderPosition / ENCODER_STEPS_PER_MENU_ITEM) == _menuItemNr) {\
  199. lcd_quick_feedback(); \
  200. menu_action_ ## type ( args ); \
  201. return;\
  202. }\
  203. }\
  204. _menuItemNr++;\
  205. } while(0)
  206. #define MENU_ITEM_DUMMY() do { _menuItemNr++; } while(0)
  207. #define MENU_ITEM_EDIT(type, label, args...) MENU_ITEM(setting_edit_ ## type, label, (label) , ## args )
  208. #define MENU_ITEM_EDIT_CALLBACK(type, label, args...) MENU_ITEM(setting_edit_callback_ ## type, label, (label) , ## args )
  209. #define END_MENU() \
  210. if (encoderPosition / ENCODER_STEPS_PER_MENU_ITEM >= _menuItemNr) encoderPosition = _menuItemNr * ENCODER_STEPS_PER_MENU_ITEM - 1; \
  211. 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; } \
  212. } } while(0)
  213. /** Used variables to keep track of the menu */
  214. #ifndef REPRAPWORLD_KEYPAD
  215. volatile uint8_t buttons;//Contains the bits of the currently pressed buttons.
  216. #else
  217. volatile uint8_t buttons_reprapworld_keypad; // to store the reprapworld_keypad shift register values
  218. #endif
  219. #ifdef LCD_HAS_SLOW_BUTTONS
  220. volatile uint8_t slow_buttons;//Contains the bits of the currently pressed buttons.
  221. #endif
  222. uint8_t currentMenuViewOffset; /* scroll offset in the current menu */
  223. uint32_t blocking_enc;
  224. uint8_t lastEncoderBits;
  225. uint32_t encoderPosition;
  226. #if (SDCARDDETECT > 0)
  227. bool lcd_oldcardstatus;
  228. #endif
  229. #endif //ULTIPANEL
  230. menuFunc_t currentMenu = lcd_status_screen; /* function pointer to the currently active menu */
  231. uint32_t lcd_next_update_millis;
  232. uint8_t lcd_status_update_delay;
  233. bool ignore_click = false;
  234. bool wait_for_unclick;
  235. 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) */
  236. // place-holders for Ki and Kd edits
  237. #ifdef PIDTEMP
  238. // float raw_Ki, raw_Kd;
  239. #endif
  240. static void lcd_goto_menu(menuFunc_t menu, const uint32_t encoder = 0, const bool feedback = true, bool reset_menu_state = true) {
  241. if (currentMenu != menu) {
  242. currentMenu = menu;
  243. encoderPosition = encoder;
  244. if (reset_menu_state) {
  245. // Resets the global shared C union.
  246. // This ensures, that the menu entered will find out, that it shall initialize itself.
  247. memset(&menuData, 0, sizeof(menuData));
  248. }
  249. if (feedback) lcd_quick_feedback();
  250. // For LCD_PROGRESS_BAR re-initialize the custom characters
  251. #if defined(LCD_PROGRESS_BAR) && defined(SDSUPPORT)
  252. lcd_set_custom_characters(menu == lcd_status_screen);
  253. #endif
  254. }
  255. }
  256. /* Main status screen. It's up to the implementation specific part to show what is needed. As this is very display dependent */
  257. // Language selection dialog not active.
  258. #define LANGSEL_OFF 0
  259. // Language selection dialog modal, entered from the info screen. This is the case on firmware boot up,
  260. // if the language index stored in the EEPROM is not valid.
  261. #define LANGSEL_MODAL 1
  262. // Language selection dialog entered from the Setup menu.
  263. #define LANGSEL_ACTIVE 2
  264. // Language selection dialog status
  265. unsigned char langsel = LANGSEL_OFF;
  266. void set_language_from_EEPROM() {
  267. unsigned char eep = eeprom_read_byte((unsigned char*)EEPROM_LANG);
  268. if (eep < LANG_NUM)
  269. {
  270. lang_selected = eep;
  271. // Language is valid, no need to enter the language selection screen.
  272. langsel = LANGSEL_OFF;
  273. }
  274. else
  275. {
  276. lang_selected = LANG_ID_DEFAULT;
  277. // Invalid language, enter the language selection screen in a modal mode.
  278. langsel = LANGSEL_MODAL;
  279. }
  280. }
  281. static void lcd_status_screen()
  282. {
  283. if (firstrun == 1)
  284. {
  285. firstrun = 0;
  286. set_language_from_EEPROM();
  287. if(lcd_status_message_level == 0){
  288. strncpy_P(lcd_status_message, WELCOME_MSG, LCD_WIDTH);
  289. }
  290. if (eeprom_read_byte((uint8_t *)EEPROM_TOTALTIME) == 255 && eeprom_read_byte((uint8_t *)EEPROM_TOTALTIME + 1) == 255 && eeprom_read_byte((uint8_t *)EEPROM_TOTALTIME + 2) == 255 && eeprom_read_byte((uint8_t *)EEPROM_TOTALTIME + 3) == 255)
  291. {
  292. eeprom_update_dword((uint32_t *)EEPROM_TOTALTIME, 0);
  293. eeprom_update_dword((uint32_t *)EEPROM_FILAMENTUSED, 0);
  294. }
  295. if (langsel) {
  296. //strncpy_P(lcd_status_message, PSTR(">>>>>>>>>>>> PRESS v"), LCD_WIDTH);
  297. // Entering the language selection screen in a modal mode.
  298. }
  299. }
  300. if (lcd_status_update_delay)
  301. lcd_status_update_delay--;
  302. else
  303. lcdDrawUpdate = 1;
  304. if (lcdDrawUpdate)
  305. {
  306. ReInitLCD++;
  307. if (ReInitLCD == 30) {
  308. lcd_implementation_init( // to maybe revive the LCD if static electricity killed it.
  309. #if defined(LCD_PROGRESS_BAR) && defined(SDSUPPORT)
  310. currentMenu == lcd_status_screen
  311. #endif
  312. );
  313. ReInitLCD = 0 ;
  314. } else {
  315. if ((ReInitLCD % 10) == 0) {
  316. //lcd_implementation_nodisplay();
  317. lcd_implementation_init_noclear( // to maybe revive the LCD if static electricity killed it.
  318. #if defined(LCD_PROGRESS_BAR) && defined(SDSUPPORT)
  319. currentMenu == lcd_status_screen
  320. #endif
  321. );
  322. }
  323. }
  324. //lcd_implementation_display();
  325. lcd_implementation_status_screen();
  326. //lcd_implementation_clear();
  327. if (farm_mode)
  328. {
  329. farm_timer--;
  330. if (farm_timer < 1)
  331. {
  332. farm_timer = 180;
  333. prusa_statistics(0);
  334. }
  335. switch (farm_timer)
  336. {
  337. case 45:
  338. prusa_statistics(21);
  339. break;
  340. case 10:
  341. if (IS_SD_PRINTING)
  342. {
  343. prusa_statistics(20);
  344. }
  345. break;
  346. }
  347. } // end of farm_mode
  348. 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 */
  349. if (lcd_commands_type != LCD_COMMAND_IDLE)
  350. {
  351. lcd_commands();
  352. }
  353. } // end of lcdDrawUpdate
  354. #ifdef ULTIPANEL
  355. bool current_click = LCD_CLICKED;
  356. if (ignore_click) {
  357. if (wait_for_unclick) {
  358. if (!current_click) {
  359. ignore_click = wait_for_unclick = false;
  360. }
  361. else {
  362. current_click = false;
  363. }
  364. }
  365. else if (current_click) {
  366. lcd_quick_feedback();
  367. wait_for_unclick = true;
  368. current_click = false;
  369. }
  370. }
  371. //if (--langsel ==0) {langsel=1;current_click=true;}
  372. if (current_click && (lcd_commands_type != LCD_COMMAND_STOP_PRINT)) //click is aborted unless stop print finishes
  373. {
  374. lcd_goto_menu(lcd_main_menu);
  375. lcd_implementation_init( // to maybe revive the LCD if static electricity killed it.
  376. #if defined(LCD_PROGRESS_BAR) && defined(SDSUPPORT)
  377. currentMenu == lcd_status_screen
  378. #endif
  379. );
  380. #ifdef FILAMENT_LCD_DISPLAY
  381. message_millis = millis(); // get status message to show up for a while
  382. #endif
  383. }
  384. #ifdef ULTIPANEL_FEEDMULTIPLY
  385. // Dead zone at 100% feedrate
  386. if ((feedmultiply < 100 && (feedmultiply + int(encoderPosition)) > 100) ||
  387. (feedmultiply > 100 && (feedmultiply + int(encoderPosition)) < 100))
  388. {
  389. encoderPosition = 0;
  390. feedmultiply = 100;
  391. }
  392. if (feedmultiply == 100 && int(encoderPosition) > ENCODER_FEEDRATE_DEADZONE)
  393. {
  394. feedmultiply += int(encoderPosition) - ENCODER_FEEDRATE_DEADZONE;
  395. encoderPosition = 0;
  396. }
  397. else if (feedmultiply == 100 && int(encoderPosition) < -ENCODER_FEEDRATE_DEADZONE)
  398. {
  399. feedmultiply += int(encoderPosition) + ENCODER_FEEDRATE_DEADZONE;
  400. encoderPosition = 0;
  401. }
  402. else if (feedmultiply != 100)
  403. {
  404. feedmultiply += int(encoderPosition);
  405. encoderPosition = 0;
  406. }
  407. #endif //ULTIPANEL_FEEDMULTIPLY
  408. if (feedmultiply < 10)
  409. feedmultiply = 10;
  410. else if (feedmultiply > 999)
  411. feedmultiply = 999;
  412. #endif //ULTIPANEL
  413. }
  414. #ifdef ULTIPANEL
  415. void lcd_commands()
  416. {
  417. if (lcd_commands_type == LCD_COMMAND_STOP_PRINT) /// stop print
  418. {
  419. if (lcd_commands_step == 0) { lcd_commands_step = 6; custom_message = true; }
  420. if (lcd_commands_step == 1 && !blocks_queued())
  421. {
  422. lcd_commands_step = 0;
  423. lcd_commands_type = 0;
  424. lcd_setstatuspgm(WELCOME_MSG);
  425. custom_message_type = 0;
  426. custom_message = false;
  427. isPrintPaused = false;
  428. }
  429. if (lcd_commands_step == 2 && !blocks_queued())
  430. {
  431. setTargetBed(0);
  432. setTargetHotend(0, 0);
  433. setTargetHotend(0, 1);
  434. setTargetHotend(0, 2);
  435. manage_heater();
  436. lcd_setstatuspgm(WELCOME_MSG);
  437. cancel_heatup = false;
  438. lcd_commands_step = 1;
  439. }
  440. if (lcd_commands_step == 3 && !blocks_queued())
  441. {
  442. // M84: Disable steppers.
  443. enquecommand_P(PSTR("M84"));
  444. #ifdef SNMM
  445. enquecommand_P(PSTR("PRUSA ResF")); //resets flag at the end of the print (used for SNMM)
  446. #endif
  447. autotempShutdown();
  448. lcd_commands_step = 2;
  449. }
  450. if (lcd_commands_step == 4 && !blocks_queued())
  451. {
  452. lcd_setstatuspgm(MSG_PLEASE_WAIT);
  453. // G90: Absolute positioning.
  454. enquecommand_P(PSTR("G90"));
  455. // M83: Set extruder to relative mode.
  456. enquecommand_P(PSTR("M83"));
  457. #ifdef X_CANCEL_POS
  458. enquecommand_P(PSTR("G1 X" STRINGIFY(X_CANCEL_POS) " Y" STRINGIFY(Y_CANCEL_POS) " E0 F7000"));
  459. #else
  460. enquecommand_P(PSTR("G1 X50 Y" STRINGIFY(Y_MAX_POS) " E0 F7000"));
  461. #endif
  462. lcd_ignore_click(false);
  463. #ifdef SNMM
  464. lcd_commands_step = 7;
  465. #else
  466. lcd_commands_step = 3;
  467. #endif
  468. }
  469. if (lcd_commands_step == 5 && !blocks_queued())
  470. {
  471. lcd_setstatuspgm(MSG_PRINT_ABORTED);
  472. // G91: Set to relative positioning.
  473. enquecommand_P(PSTR("G91"));
  474. // Lift up.
  475. enquecommand_P(PSTR("G1 Z15 F1500"));
  476. if (axis_known_position[X_AXIS] && axis_known_position[Y_AXIS]) lcd_commands_step = 4;
  477. else lcd_commands_step = 3;
  478. }
  479. if (lcd_commands_step == 6 && !blocks_queued())
  480. {
  481. lcd_setstatuspgm(MSG_PRINT_ABORTED);
  482. cancel_heatup = true;
  483. setTargetBed(0);
  484. #ifndef SNMM
  485. setTargetHotend(0, 0); //to heating when changing filament for multicolor
  486. setTargetHotend(0, 1);
  487. setTargetHotend(0, 2);
  488. #endif
  489. manage_heater();
  490. custom_message = true;
  491. custom_message_type = 2;
  492. lcd_commands_step = 5;
  493. }
  494. if (lcd_commands_step == 7 && !blocks_queued()) {
  495. /*ramming();
  496. st_synchronize();
  497. change_extr(0);*/
  498. st_synchronize();
  499. enquecommand_P(PSTR("M907 E700")); //set extruder current higher
  500. enquecommand_P(PSTR("M203 E50"));
  501. st_synchronize();
  502. if (current_temperature[0] < 230) {
  503. // PLA
  504. //enquecommand_P(PSTR("G1 E-8 F2100.000000"));
  505. //enquecommand_P(PSTR("G1 E8 F2100.000000"));
  506. enquecommand_P(PSTR("G1 E5.4 F2800.000000"));
  507. enquecommand_P(PSTR("G1 E3.2 F3000.000000"));
  508. enquecommand_P(PSTR("G1 E3 F3400.000000"));
  509. enquecommand_P(PSTR("M203 E80"));
  510. st_synchronize();
  511. enquecommand_P(PSTR("G1 E-82 F9500.000000"));
  512. enquecommand_P(PSTR("M203 E50"));
  513. enquecommand_P(PSTR("G1 E-20 F1200.000000"));
  514. enquecommand_P(PSTR("G1 E5 F400.000000"));
  515. enquecommand_P(PSTR("G1 E5 F600.000000"));
  516. st_synchronize();
  517. enquecommand_P(PSTR("G1 E-10 F600.000000"));
  518. enquecommand_P(PSTR("G1 E+10 F600.000000"));
  519. enquecommand_P(PSTR("G1 E-10 F800.000000"));
  520. enquecommand_P(PSTR("G1 E+10 F800.000000"));
  521. enquecommand_P(PSTR("G1 E-10 F800.000000"));
  522. st_synchronize();
  523. }else {
  524. // ABS
  525. //enquecommand_P(PSTR("G1 E-8 F2100.000000"));
  526. //enquecommand_P(PSTR("G1 E8 F2100.000000"));
  527. enquecommand_P(PSTR("G1 E3.1 F2000.000000"));
  528. enquecommand_P(PSTR("G1 E3.1 F2500.000000"));
  529. enquecommand_P(PSTR("G1 E4 F3000.000000"));
  530. st_synchronize();
  531. enquecommand_P(PSTR("G4 P4700"));
  532. enquecommand_P(PSTR("M203 E80"));
  533. enquecommand_P(PSTR("G1 E-92 F9900.000000"));
  534. enquecommand_P(PSTR("M203 E50"));
  535. enquecommand_P(PSTR("G1 E-5 F800.000000"));
  536. enquecommand_P(PSTR("G1 E5 F400.000000"));
  537. st_synchronize();
  538. enquecommand_P(PSTR("G1 E-5 F600.000000"));
  539. enquecommand_P(PSTR("G1 E5 F600.000000"));
  540. enquecommand_P(PSTR("G1 E-5 F600.000000"));
  541. enquecommand_P(PSTR("G1 E5 F600.000000"));
  542. enquecommand_P(PSTR("G1 E5 F600.000000"));
  543. st_synchronize();
  544. }
  545. enquecommand_P(PSTR("T0"));
  546. enquecommand_P(PSTR("M907 E550")); //set extruder current to 500
  547. //digipot_init();
  548. lcd_commands_step = 3;
  549. }
  550. }
  551. if (lcd_commands_type == 3)
  552. {
  553. lcd_commands_type = 0;
  554. }
  555. if (lcd_commands_type == LCD_COMMAND_FARM_MODE_CONFIRM) /// farm mode confirm
  556. {
  557. if (lcd_commands_step == 0) { lcd_commands_step = 6; custom_message = true; }
  558. if (lcd_commands_step == 1 && !blocks_queued())
  559. {
  560. lcd_confirm_print();
  561. lcd_commands_step = 0;
  562. lcd_commands_type = 0;
  563. }
  564. if (lcd_commands_step == 2 && !blocks_queued())
  565. {
  566. lcd_commands_step = 1;
  567. }
  568. if (lcd_commands_step == 3 && !blocks_queued())
  569. {
  570. lcd_commands_step = 2;
  571. }
  572. if (lcd_commands_step == 4 && !blocks_queued())
  573. {
  574. enquecommand_P(PSTR("G90"));
  575. enquecommand_P(PSTR("G1 X" STRINGIFY(X_CANCEL_POS) " Y" STRINGIFY(Y_CANCEL_POS) " E0 F7000"));
  576. lcd_commands_step = 3;
  577. }
  578. if (lcd_commands_step == 5 && !blocks_queued())
  579. {
  580. lcd_commands_step = 4;
  581. }
  582. if (lcd_commands_step == 6 && !blocks_queued())
  583. {
  584. enquecommand_P(PSTR("G91"));
  585. enquecommand_P(PSTR("G1 Z15 F1500"));
  586. st_synchronize();
  587. #ifdef SNMM
  588. lcd_commands_step = 7;
  589. #else
  590. lcd_commands_step = 5;
  591. #endif
  592. }
  593. }
  594. }
  595. static void lcd_return_to_status() {
  596. lcd_implementation_init( // to maybe revive the LCD if static electricity killed it.
  597. #if defined(LCD_PROGRESS_BAR) && defined(SDSUPPORT)
  598. currentMenu == lcd_status_screen
  599. #endif
  600. );
  601. lcd_goto_menu(lcd_status_screen, 0, false);
  602. }
  603. static void lcd_sdcard_pause() {
  604. card.pauseSDPrint();
  605. isPrintPaused = true;
  606. lcdDrawUpdate = 3;
  607. }
  608. static void lcd_sdcard_resume() {
  609. card.startFileprint();
  610. isPrintPaused = false;
  611. lcdDrawUpdate = 3;
  612. }
  613. float move_menu_scale;
  614. static void lcd_move_menu_axis();
  615. /* Menu implementation */
  616. void lcd_preheat_pla()
  617. {
  618. setTargetHotend0(PLA_PREHEAT_HOTEND_TEMP);
  619. setTargetBed(PLA_PREHEAT_HPB_TEMP);
  620. fanSpeed = 0;
  621. lcd_return_to_status();
  622. setWatch(); // heater sanity check timer
  623. }
  624. void lcd_preheat_abs()
  625. {
  626. setTargetHotend0(ABS_PREHEAT_HOTEND_TEMP);
  627. setTargetBed(ABS_PREHEAT_HPB_TEMP);
  628. fanSpeed = 0;
  629. lcd_return_to_status();
  630. setWatch(); // heater sanity check timer
  631. }
  632. void lcd_preheat_pp()
  633. {
  634. setTargetHotend0(PP_PREHEAT_HOTEND_TEMP);
  635. setTargetBed(PP_PREHEAT_HPB_TEMP);
  636. fanSpeed = 0;
  637. lcd_return_to_status();
  638. setWatch(); // heater sanity check timer
  639. }
  640. void lcd_preheat_pet()
  641. {
  642. setTargetHotend0(PET_PREHEAT_HOTEND_TEMP);
  643. setTargetBed(PET_PREHEAT_HPB_TEMP);
  644. fanSpeed = 0;
  645. lcd_return_to_status();
  646. setWatch(); // heater sanity check timer
  647. }
  648. void lcd_preheat_hips()
  649. {
  650. setTargetHotend0(HIPS_PREHEAT_HOTEND_TEMP);
  651. setTargetBed(HIPS_PREHEAT_HPB_TEMP);
  652. fanSpeed = 0;
  653. lcd_return_to_status();
  654. setWatch(); // heater sanity check timer
  655. }
  656. void lcd_preheat_flex()
  657. {
  658. setTargetHotend0(FLEX_PREHEAT_HOTEND_TEMP);
  659. setTargetBed(FLEX_PREHEAT_HPB_TEMP);
  660. fanSpeed = 0;
  661. lcd_return_to_status();
  662. setWatch(); // heater sanity check timer
  663. }
  664. void lcd_cooldown()
  665. {
  666. setTargetHotend0(0);
  667. setTargetHotend1(0);
  668. setTargetHotend2(0);
  669. setTargetBed(0);
  670. fanSpeed = 0;
  671. lcd_return_to_status();
  672. }
  673. static void lcd_preheat_menu()
  674. {
  675. START_MENU();
  676. MENU_ITEM(back, MSG_MAIN, lcd_main_menu);
  677. MENU_ITEM(function, PSTR("ABS - " STRINGIFY(ABS_PREHEAT_HOTEND_TEMP) "/" STRINGIFY(ABS_PREHEAT_HPB_TEMP)), lcd_preheat_abs);
  678. MENU_ITEM(function, PSTR("PLA - " STRINGIFY(PLA_PREHEAT_HOTEND_TEMP) "/" STRINGIFY(PLA_PREHEAT_HPB_TEMP)), lcd_preheat_pla);
  679. MENU_ITEM(function, PSTR("PET - " STRINGIFY(PET_PREHEAT_HOTEND_TEMP) "/" STRINGIFY(PET_PREHEAT_HPB_TEMP)), lcd_preheat_pet);
  680. MENU_ITEM(function, PSTR("HIPS - " STRINGIFY(HIPS_PREHEAT_HOTEND_TEMP) "/" STRINGIFY(HIPS_PREHEAT_HPB_TEMP)), lcd_preheat_hips);
  681. MENU_ITEM(function, PSTR("PP - " STRINGIFY(PP_PREHEAT_HOTEND_TEMP) "/" STRINGIFY(PP_PREHEAT_HPB_TEMP)), lcd_preheat_pp);
  682. MENU_ITEM(function, PSTR("FLEX - " STRINGIFY(FLEX_PREHEAT_HOTEND_TEMP) "/" STRINGIFY(FLEX_PREHEAT_HPB_TEMP)), lcd_preheat_flex);
  683. MENU_ITEM(function, MSG_COOLDOWN, lcd_cooldown);
  684. END_MENU();
  685. }
  686. static void lcd_support_menu()
  687. {
  688. if (menuData.supportMenu.status == 0 || lcdDrawUpdate == 2) {
  689. // Menu was entered or SD card status has changed (plugged in or removed).
  690. // Initialize its status.
  691. menuData.supportMenu.status = 1;
  692. menuData.supportMenu.is_flash_air = card.ToshibaFlashAir_isEnabled() && card.ToshibaFlashAir_GetIP(menuData.supportMenu.ip);
  693. if (menuData.supportMenu.is_flash_air)
  694. sprintf_P(menuData.supportMenu.ip_str, PSTR("%d.%d.%d.%d"),
  695. menuData.supportMenu.ip[0], menuData.supportMenu.ip[1],
  696. menuData.supportMenu.ip[2], menuData.supportMenu.ip[3]);
  697. } else if (menuData.supportMenu.is_flash_air &&
  698. menuData.supportMenu.ip[0] == 0 && menuData.supportMenu.ip[1] == 0 &&
  699. menuData.supportMenu.ip[2] == 0 && menuData.supportMenu.ip[3] == 0 &&
  700. ++ menuData.supportMenu.status == 16) {
  701. // Waiting for the FlashAir card to get an IP address from a router. Force an update.
  702. menuData.supportMenu.status = 0;
  703. }
  704. START_MENU();
  705. MENU_ITEM(back, MSG_MAIN, lcd_main_menu);
  706. // Ideally this block would be optimized out by the compiler.
  707. const uint8_t fw_string_len = strlen_P(FW_VERSION_STR_P());
  708. if (fw_string_len < 6) {
  709. MENU_ITEM(back, PSTR(MSG_FW_VERSION " - " FW_version), lcd_main_menu);
  710. } else {
  711. MENU_ITEM(back, PSTR("FW - " FW_version), lcd_main_menu);
  712. }
  713. MENU_ITEM(back, MSG_PRUSA3D, lcd_main_menu);
  714. MENU_ITEM(back, MSG_PRUSA3D_FORUM, lcd_main_menu);
  715. MENU_ITEM(back, MSG_PRUSA3D_HOWTO, lcd_main_menu);
  716. MENU_ITEM(back, PSTR("------------"), lcd_main_menu);
  717. MENU_ITEM(back, PSTR(FILAMENT_SIZE), lcd_main_menu);
  718. MENU_ITEM(back, PSTR(ELECTRONICS),lcd_main_menu);
  719. MENU_ITEM(back, PSTR(NOZZLE_TYPE),lcd_main_menu);
  720. MENU_ITEM(back, PSTR("------------"), lcd_main_menu);
  721. MENU_ITEM(back, PSTR("Date: "), lcd_main_menu);
  722. MENU_ITEM(back, PSTR(__DATE__), lcd_main_menu);
  723. // Show the FlashAir IP address, if the card is available.
  724. if (menuData.supportMenu.is_flash_air) {
  725. MENU_ITEM(back, PSTR("------------"), lcd_main_menu);
  726. MENU_ITEM(back, PSTR("FlashAir IP Addr:"), lcd_main_menu);
  727. MENU_ITEM(back_RAM, menuData.supportMenu.ip_str, lcd_main_menu);
  728. }
  729. END_MENU();
  730. }
  731. void lcd_unLoadFilament()
  732. {
  733. if (degHotend0() > EXTRUDE_MINTEMP) {
  734. enquecommand_P(PSTR("M702")); //unload filament
  735. } else {
  736. lcd_implementation_clear();
  737. lcd.setCursor(0, 0);
  738. lcd_printPGM(MSG_ERROR);
  739. lcd.setCursor(0, 2);
  740. lcd_printPGM(MSG_PREHEAT_NOZZLE);
  741. delay(2000);
  742. lcd_implementation_clear();
  743. }
  744. lcd_return_to_status();
  745. }
  746. void lcd_change_filament() {
  747. lcd_implementation_clear();
  748. lcd.setCursor(0, 1);
  749. lcd_printPGM(MSG_CHANGING_FILAMENT);
  750. }
  751. void lcd_wait_interact() {
  752. lcd_implementation_clear();
  753. lcd.setCursor(0, 1);
  754. lcd_printPGM(MSG_INSERT_FILAMENT);
  755. lcd.setCursor(0, 2);
  756. lcd_printPGM(MSG_PRESS);
  757. }
  758. void lcd_change_success() {
  759. lcd_implementation_clear();
  760. lcd.setCursor(0, 2);
  761. lcd_printPGM(MSG_CHANGE_SUCCESS);
  762. }
  763. void lcd_loading_color() {
  764. lcd_implementation_clear();
  765. lcd.setCursor(0, 0);
  766. lcd_printPGM(MSG_LOADING_COLOR);
  767. lcd.setCursor(0, 2);
  768. lcd_printPGM(MSG_PLEASE_WAIT);
  769. for (int i = 0; i < 20; i++) {
  770. lcd.setCursor(i, 3);
  771. lcd.print(".");
  772. for (int j = 0; j < 10 ; j++) {
  773. manage_heater();
  774. manage_inactivity(true);
  775. delay(85);
  776. }
  777. }
  778. }
  779. void lcd_loading_filament() {
  780. lcd_implementation_clear();
  781. lcd.setCursor(0, 0);
  782. lcd_printPGM(MSG_LOADING_FILAMENT);
  783. lcd.setCursor(0, 2);
  784. lcd_printPGM(MSG_PLEASE_WAIT);
  785. for (int i = 0; i < 20; i++) {
  786. lcd.setCursor(i, 3);
  787. lcd.print(".");
  788. for (int j = 0; j < 10 ; j++) {
  789. manage_heater();
  790. manage_inactivity(true);
  791. delay(110);
  792. }
  793. }
  794. }
  795. void lcd_alright() {
  796. int enc_dif = 0;
  797. int cursor_pos = 1;
  798. lcd_implementation_clear();
  799. lcd.setCursor(0, 0);
  800. lcd_printPGM(MSG_CORRECTLY);
  801. lcd.setCursor(1, 1);
  802. lcd_printPGM(MSG_YES);
  803. lcd.setCursor(1, 2);
  804. lcd_printPGM(MSG_NOT_LOADED);
  805. lcd.setCursor(1, 3);
  806. lcd_printPGM(MSG_NOT_COLOR);
  807. lcd.setCursor(0, 1);
  808. lcd.print(">");
  809. enc_dif = encoderDiff;
  810. while (lcd_change_fil_state == 0) {
  811. manage_heater();
  812. manage_inactivity(true);
  813. if ( abs((enc_dif - encoderDiff)) > 4 ) {
  814. if ( (abs(enc_dif - encoderDiff)) > 1 ) {
  815. if (enc_dif > encoderDiff ) {
  816. cursor_pos --;
  817. }
  818. if (enc_dif < encoderDiff ) {
  819. cursor_pos ++;
  820. }
  821. if (cursor_pos > 3) {
  822. cursor_pos = 3;
  823. }
  824. if (cursor_pos < 1) {
  825. cursor_pos = 1;
  826. }
  827. lcd.setCursor(0, 1);
  828. lcd.print(" ");
  829. lcd.setCursor(0, 2);
  830. lcd.print(" ");
  831. lcd.setCursor(0, 3);
  832. lcd.print(" ");
  833. lcd.setCursor(0, cursor_pos);
  834. lcd.print(">");
  835. enc_dif = encoderDiff;
  836. delay(100);
  837. }
  838. }
  839. if (lcd_clicked()) {
  840. lcd_change_fil_state = cursor_pos;
  841. delay(500);
  842. }
  843. };
  844. lcd_implementation_clear();
  845. lcd_return_to_status();
  846. }
  847. void lcd_LoadFilament()
  848. {
  849. if (degHotend0() > EXTRUDE_MINTEMP)
  850. {
  851. custom_message = true;
  852. loading_flag = true;
  853. enquecommand_P(PSTR("M701")); //load filament
  854. SERIAL_ECHOLN("Loading filament");
  855. }
  856. else
  857. {
  858. lcd_implementation_clear();
  859. lcd.setCursor(0, 0);
  860. lcd_printPGM(MSG_ERROR);
  861. lcd.setCursor(0, 2);
  862. lcd_printPGM(MSG_PREHEAT_NOZZLE);
  863. delay(2000);
  864. lcd_implementation_clear();
  865. }
  866. lcd_return_to_status();
  867. }
  868. void lcd_menu_statistics()
  869. {
  870. if (IS_SD_PRINTING)
  871. {
  872. int _met = total_filament_used / 100000;
  873. int _cm = (total_filament_used - (_met * 100000))/10;
  874. int _t = (millis() - starttime) / 1000;
  875. int _h = _t / 3600;
  876. int _m = (_t - (_h * 3600)) / 60;
  877. int _s = _t - ((_h * 3600) + (_m * 60));
  878. lcd.setCursor(0, 0);
  879. lcd_printPGM(MSG_STATS_FILAMENTUSED);
  880. lcd.setCursor(6, 1);
  881. lcd.print(itostr3(_met));
  882. lcd.print("m ");
  883. lcd.print(ftostr32ns(_cm));
  884. lcd.print("cm");
  885. lcd.setCursor(0, 2);
  886. lcd_printPGM(MSG_STATS_PRINTTIME);
  887. lcd.setCursor(8, 3);
  888. lcd.print(itostr2(_h));
  889. lcd.print("h ");
  890. lcd.print(itostr2(_m));
  891. lcd.print("m ");
  892. lcd.print(itostr2(_s));
  893. lcd.print("s");
  894. if (lcd_clicked())
  895. {
  896. lcd_quick_feedback();
  897. lcd_return_to_status();
  898. }
  899. }
  900. else
  901. {
  902. unsigned long _filament = eeprom_read_dword((uint32_t *)EEPROM_FILAMENTUSED);
  903. unsigned long _time = eeprom_read_dword((uint32_t *)EEPROM_TOTALTIME); //in minutes
  904. uint8_t _hours, _minutes;
  905. uint32_t _days;
  906. float _filament_m = (float)_filament;
  907. int _filament_km = (_filament >= 100000) ? _filament / 100000 : 0;
  908. if (_filament_km > 0) _filament_m = _filament - (_filament_km * 100000);
  909. _days = _time / 1440;
  910. _hours = (_time - (_days * 1440)) / 60;
  911. _minutes = _time - ((_days * 1440) + (_hours * 60));
  912. lcd_implementation_clear();
  913. lcd.setCursor(0, 0);
  914. lcd_printPGM(MSG_STATS_TOTALFILAMENT);
  915. lcd.setCursor(17 - strlen(ftostr32ns(_filament_m)), 1);
  916. lcd.print(ftostr32ns(_filament_m));
  917. if (_filament_km > 0)
  918. {
  919. lcd.setCursor(17 - strlen(ftostr32ns(_filament_m)) - 3, 1);
  920. lcd.print("km");
  921. lcd.setCursor(17 - strlen(ftostr32ns(_filament_m)) - 8, 1);
  922. lcd.print(itostr4(_filament_km));
  923. }
  924. lcd.setCursor(18, 1);
  925. lcd.print("m");
  926. lcd.setCursor(0, 2);
  927. lcd_printPGM(MSG_STATS_TOTALPRINTTIME);;
  928. lcd.setCursor(18, 3);
  929. lcd.print("m");
  930. lcd.setCursor(14, 3);
  931. lcd.print(itostr3(_minutes));
  932. lcd.setCursor(14, 3);
  933. lcd.print(":");
  934. lcd.setCursor(12, 3);
  935. lcd.print("h");
  936. lcd.setCursor(9, 3);
  937. lcd.print(itostr3(_hours));
  938. lcd.setCursor(9, 3);
  939. lcd.print(":");
  940. lcd.setCursor(7, 3);
  941. lcd.print("d");
  942. lcd.setCursor(4, 3);
  943. lcd.print(itostr3(_days));
  944. while (!lcd_clicked())
  945. {
  946. manage_heater();
  947. manage_inactivity(true);
  948. delay(100);
  949. }
  950. lcd_quick_feedback();
  951. lcd_return_to_status();
  952. }
  953. }
  954. static void _lcd_move(const char *name, int axis, int min, int max) {
  955. if (encoderPosition != 0) {
  956. refresh_cmd_timeout();
  957. if (! planner_queue_full()) {
  958. current_position[axis] += float((int)encoderPosition) * move_menu_scale;
  959. if (min_software_endstops && current_position[axis] < min) current_position[axis] = min;
  960. if (max_software_endstops && current_position[axis] > max) current_position[axis] = max;
  961. encoderPosition = 0;
  962. world2machine_clamp(current_position[X_AXIS], current_position[Y_AXIS]);
  963. 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);
  964. lcdDrawUpdate = 1;
  965. }
  966. }
  967. if (lcdDrawUpdate) lcd_implementation_drawedit(name, ftostr31(current_position[axis]));
  968. if (LCD_CLICKED) lcd_goto_menu(lcd_move_menu_axis);
  969. }
  970. static void lcd_move_e()
  971. {
  972. if (degHotend0() > EXTRUDE_MINTEMP) {
  973. if (encoderPosition != 0)
  974. {
  975. refresh_cmd_timeout();
  976. if (! planner_queue_full()) {
  977. current_position[E_AXIS] += float((int)encoderPosition) * move_menu_scale;
  978. encoderPosition = 0;
  979. 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);
  980. lcdDrawUpdate = 1;
  981. }
  982. }
  983. if (lcdDrawUpdate)
  984. {
  985. lcd_implementation_drawedit(PSTR("Extruder"), ftostr31(current_position[E_AXIS]));
  986. }
  987. if (LCD_CLICKED) lcd_goto_menu(lcd_move_menu_axis);
  988. }
  989. else {
  990. lcd_implementation_clear();
  991. lcd.setCursor(0, 0);
  992. lcd_printPGM(MSG_ERROR);
  993. lcd.setCursor(0, 2);
  994. lcd_printPGM(MSG_PREHEAT_NOZZLE);
  995. delay(2000);
  996. lcd_return_to_status();
  997. }
  998. }
  999. // Save a single axis babystep value.
  1000. void EEPROM_save_B(int pos, int* value)
  1001. {
  1002. union Data data;
  1003. data.value = *value;
  1004. eeprom_update_byte((unsigned char*)pos, data.b[0]);
  1005. eeprom_update_byte((unsigned char*)pos + 1, data.b[1]);
  1006. }
  1007. // Read a single axis babystep value.
  1008. void EEPROM_read_B(int pos, int* value)
  1009. {
  1010. union Data data;
  1011. data.b[0] = eeprom_read_byte((unsigned char*)pos);
  1012. data.b[1] = eeprom_read_byte((unsigned char*)pos + 1);
  1013. *value = data.value;
  1014. }
  1015. static void lcd_move_x() {
  1016. _lcd_move(PSTR("X"), X_AXIS, X_MIN_POS, X_MAX_POS);
  1017. }
  1018. static void lcd_move_y() {
  1019. _lcd_move(PSTR("Y"), Y_AXIS, Y_MIN_POS, Y_MAX_POS);
  1020. }
  1021. static void lcd_move_z() {
  1022. _lcd_move(PSTR("Z"), Z_AXIS, Z_MIN_POS, Z_MAX_POS);
  1023. }
  1024. static void _lcd_babystep(int axis, const char *msg)
  1025. {
  1026. if (menuData.babyStep.status == 0) {
  1027. // Menu was entered.
  1028. // Initialize its status.
  1029. menuData.babyStep.status = 1;
  1030. check_babystep();
  1031. EEPROM_read_B(EEPROM_BABYSTEP_X, &menuData.babyStep.babystepMem[0]);
  1032. EEPROM_read_B(EEPROM_BABYSTEP_Y, &menuData.babyStep.babystepMem[1]);
  1033. EEPROM_read_B(EEPROM_BABYSTEP_Z, &menuData.babyStep.babystepMem[2]);
  1034. menuData.babyStep.babystepMemMM[0] = menuData.babyStep.babystepMem[0]/axis_steps_per_unit[X_AXIS];
  1035. menuData.babyStep.babystepMemMM[1] = menuData.babyStep.babystepMem[1]/axis_steps_per_unit[Y_AXIS];
  1036. menuData.babyStep.babystepMemMM[2] = menuData.babyStep.babystepMem[2]/axis_steps_per_unit[Z_AXIS];
  1037. lcdDrawUpdate = 1;
  1038. //SERIAL_ECHO("Z baby step: ");
  1039. //SERIAL_ECHO(menuData.babyStep.babystepMem[2]);
  1040. // Wait 90 seconds before closing the live adjust dialog.
  1041. lcd_timeoutToStatus = millis() + 90000;
  1042. }
  1043. if (encoderPosition != 0)
  1044. {
  1045. if (homing_flag) encoderPosition = 0;
  1046. menuData.babyStep.babystepMem[axis] += (int)encoderPosition;
  1047. if (axis == 2) {
  1048. if (menuData.babyStep.babystepMem[axis] < Z_BABYSTEP_MIN) menuData.babyStep.babystepMem[axis] = Z_BABYSTEP_MIN; //-3999 -> -9.99 mm
  1049. else if (menuData.babyStep.babystepMem[axis] > Z_BABYSTEP_MAX) menuData.babyStep.babystepMem[axis] = Z_BABYSTEP_MAX; //0
  1050. else {
  1051. CRITICAL_SECTION_START
  1052. babystepsTodo[axis] += (int)encoderPosition;
  1053. CRITICAL_SECTION_END
  1054. }
  1055. }
  1056. menuData.babyStep.babystepMemMM[axis] = menuData.babyStep.babystepMem[axis]/axis_steps_per_unit[axis];
  1057. delay(50);
  1058. encoderPosition = 0;
  1059. lcdDrawUpdate = 1;
  1060. }
  1061. if (lcdDrawUpdate)
  1062. lcd_implementation_drawedit_2(msg, ftostr13ns(menuData.babyStep.babystepMemMM[axis]));
  1063. if (LCD_CLICKED || menuExiting) {
  1064. // Only update the EEPROM when leaving the menu.
  1065. EEPROM_save_B(
  1066. (axis == 0) ? EEPROM_BABYSTEP_X : ((axis == 1) ? EEPROM_BABYSTEP_Y : EEPROM_BABYSTEP_Z),
  1067. &menuData.babyStep.babystepMem[axis]);
  1068. }
  1069. if (LCD_CLICKED) lcd_goto_menu(lcd_main_menu);
  1070. }
  1071. static void lcd_babystep_x() {
  1072. _lcd_babystep(X_AXIS, (MSG_BABYSTEPPING_X));
  1073. }
  1074. static void lcd_babystep_y() {
  1075. _lcd_babystep(Y_AXIS, (MSG_BABYSTEPPING_Y));
  1076. }
  1077. static void lcd_babystep_z() {
  1078. _lcd_babystep(Z_AXIS, (MSG_BABYSTEPPING_Z));
  1079. }
  1080. static void lcd_adjust_bed();
  1081. static void lcd_adjust_bed_reset()
  1082. {
  1083. eeprom_update_byte((unsigned char*)EEPROM_BED_CORRECTION_VALID, 1);
  1084. eeprom_update_byte((unsigned char*)EEPROM_BED_CORRECTION_LEFT , 0);
  1085. eeprom_update_byte((unsigned char*)EEPROM_BED_CORRECTION_RIGHT, 0);
  1086. eeprom_update_byte((unsigned char*)EEPROM_BED_CORRECTION_FRONT, 0);
  1087. eeprom_update_byte((unsigned char*)EEPROM_BED_CORRECTION_REAR , 0);
  1088. lcd_goto_menu(lcd_adjust_bed, 0, false);
  1089. // Because we did not leave the menu, the menuData did not reset.
  1090. // Force refresh of the bed leveling data.
  1091. menuData.adjustBed.status = 0;
  1092. }
  1093. void adjust_bed_reset() {
  1094. eeprom_update_byte((unsigned char*)EEPROM_BED_CORRECTION_VALID, 1);
  1095. eeprom_update_byte((unsigned char*)EEPROM_BED_CORRECTION_LEFT, 0);
  1096. eeprom_update_byte((unsigned char*)EEPROM_BED_CORRECTION_RIGHT, 0);
  1097. eeprom_update_byte((unsigned char*)EEPROM_BED_CORRECTION_FRONT, 0);
  1098. eeprom_update_byte((unsigned char*)EEPROM_BED_CORRECTION_REAR, 0);
  1099. menuData.adjustBed.left = menuData.adjustBed.left2 = 0;
  1100. menuData.adjustBed.right = menuData.adjustBed.right2 = 0;
  1101. menuData.adjustBed.front = menuData.adjustBed.front2 = 0;
  1102. menuData.adjustBed.rear = menuData.adjustBed.rear2 = 0;
  1103. }
  1104. #define BED_ADJUSTMENT_UM_MAX 50
  1105. static void lcd_adjust_bed()
  1106. {
  1107. if (menuData.adjustBed.status == 0) {
  1108. // Menu was entered.
  1109. // Initialize its status.
  1110. menuData.adjustBed.status = 1;
  1111. bool valid = false;
  1112. menuData.adjustBed.left = menuData.adjustBed.left2 = eeprom_read_int8((unsigned char*)EEPROM_BED_CORRECTION_LEFT);
  1113. menuData.adjustBed.right = menuData.adjustBed.right2 = eeprom_read_int8((unsigned char*)EEPROM_BED_CORRECTION_RIGHT);
  1114. menuData.adjustBed.front = menuData.adjustBed.front2 = eeprom_read_int8((unsigned char*)EEPROM_BED_CORRECTION_FRONT);
  1115. menuData.adjustBed.rear = menuData.adjustBed.rear2 = eeprom_read_int8((unsigned char*)EEPROM_BED_CORRECTION_REAR);
  1116. if (eeprom_read_byte((unsigned char*)EEPROM_BED_CORRECTION_VALID) == 1 &&
  1117. menuData.adjustBed.left >= -BED_ADJUSTMENT_UM_MAX && menuData.adjustBed.left <= BED_ADJUSTMENT_UM_MAX &&
  1118. menuData.adjustBed.right >= -BED_ADJUSTMENT_UM_MAX && menuData.adjustBed.right <= BED_ADJUSTMENT_UM_MAX &&
  1119. menuData.adjustBed.front >= -BED_ADJUSTMENT_UM_MAX && menuData.adjustBed.front <= BED_ADJUSTMENT_UM_MAX &&
  1120. menuData.adjustBed.rear >= -BED_ADJUSTMENT_UM_MAX && menuData.adjustBed.rear <= BED_ADJUSTMENT_UM_MAX)
  1121. valid = true;
  1122. if (! valid) {
  1123. // Reset the values: simulate an edit.
  1124. menuData.adjustBed.left2 = 0;
  1125. menuData.adjustBed.right2 = 0;
  1126. menuData.adjustBed.front2 = 0;
  1127. menuData.adjustBed.rear2 = 0;
  1128. }
  1129. lcdDrawUpdate = 1;
  1130. eeprom_update_byte((unsigned char*)EEPROM_BED_CORRECTION_VALID, 1);
  1131. }
  1132. if (menuData.adjustBed.left != menuData.adjustBed.left2)
  1133. eeprom_update_int8((unsigned char*)EEPROM_BED_CORRECTION_LEFT, menuData.adjustBed.left = menuData.adjustBed.left2);
  1134. if (menuData.adjustBed.right != menuData.adjustBed.right2)
  1135. eeprom_update_int8((unsigned char*)EEPROM_BED_CORRECTION_RIGHT, menuData.adjustBed.right = menuData.adjustBed.right2);
  1136. if (menuData.adjustBed.front != menuData.adjustBed.front2)
  1137. eeprom_update_int8((unsigned char*)EEPROM_BED_CORRECTION_FRONT, menuData.adjustBed.front = menuData.adjustBed.front2);
  1138. if (menuData.adjustBed.rear != menuData.adjustBed.rear2)
  1139. eeprom_update_int8((unsigned char*)EEPROM_BED_CORRECTION_REAR, menuData.adjustBed.rear = menuData.adjustBed.rear2);
  1140. START_MENU();
  1141. MENU_ITEM(back, MSG_SETTINGS, lcd_calibration_menu);
  1142. MENU_ITEM_EDIT(int3, MSG_BED_CORRECTION_LEFT, &menuData.adjustBed.left2, -BED_ADJUSTMENT_UM_MAX, BED_ADJUSTMENT_UM_MAX);
  1143. MENU_ITEM_EDIT(int3, MSG_BED_CORRECTION_RIGHT, &menuData.adjustBed.right2, -BED_ADJUSTMENT_UM_MAX, BED_ADJUSTMENT_UM_MAX);
  1144. MENU_ITEM_EDIT(int3, MSG_BED_CORRECTION_FRONT, &menuData.adjustBed.front2, -BED_ADJUSTMENT_UM_MAX, BED_ADJUSTMENT_UM_MAX);
  1145. MENU_ITEM_EDIT(int3, MSG_BED_CORRECTION_REAR, &menuData.adjustBed.rear2, -BED_ADJUSTMENT_UM_MAX, BED_ADJUSTMENT_UM_MAX);
  1146. MENU_ITEM(function, MSG_BED_CORRECTION_RESET, lcd_adjust_bed_reset);
  1147. END_MENU();
  1148. }
  1149. void lcd_adjust_z() {
  1150. int enc_dif = 0;
  1151. int cursor_pos = 1;
  1152. int fsm = 0;
  1153. lcd_implementation_clear();
  1154. lcd.setCursor(0, 0);
  1155. lcd_printPGM(MSG_ADJUSTZ);
  1156. lcd.setCursor(1, 1);
  1157. lcd_printPGM(MSG_YES);
  1158. lcd.setCursor(1, 2);
  1159. lcd_printPGM(MSG_NO);
  1160. lcd.setCursor(0, 1);
  1161. lcd.print(">");
  1162. enc_dif = encoderDiff;
  1163. while (fsm == 0) {
  1164. manage_heater();
  1165. manage_inactivity(true);
  1166. if ( abs((enc_dif - encoderDiff)) > 4 ) {
  1167. if ( (abs(enc_dif - encoderDiff)) > 1 ) {
  1168. if (enc_dif > encoderDiff ) {
  1169. cursor_pos --;
  1170. }
  1171. if (enc_dif < encoderDiff ) {
  1172. cursor_pos ++;
  1173. }
  1174. if (cursor_pos > 2) {
  1175. cursor_pos = 2;
  1176. }
  1177. if (cursor_pos < 1) {
  1178. cursor_pos = 1;
  1179. }
  1180. lcd.setCursor(0, 1);
  1181. lcd.print(" ");
  1182. lcd.setCursor(0, 2);
  1183. lcd.print(" ");
  1184. lcd.setCursor(0, cursor_pos);
  1185. lcd.print(">");
  1186. enc_dif = encoderDiff;
  1187. delay(100);
  1188. }
  1189. }
  1190. if (lcd_clicked()) {
  1191. fsm = cursor_pos;
  1192. if (fsm == 1) {
  1193. int babystepLoadZ = 0;
  1194. EEPROM_read_B(EEPROM_BABYSTEP_Z, &babystepLoadZ);
  1195. CRITICAL_SECTION_START
  1196. babystepsTodo[Z_AXIS] = babystepLoadZ;
  1197. CRITICAL_SECTION_END
  1198. } else {
  1199. int zero = 0;
  1200. EEPROM_save_B(EEPROM_BABYSTEP_X, &zero);
  1201. EEPROM_save_B(EEPROM_BABYSTEP_Y, &zero);
  1202. EEPROM_save_B(EEPROM_BABYSTEP_Z, &zero);
  1203. }
  1204. delay(500);
  1205. }
  1206. };
  1207. lcd_implementation_clear();
  1208. lcd_return_to_status();
  1209. }
  1210. void lcd_wait_for_cool_down() {
  1211. lcd_set_custom_characters_degree();
  1212. while ((degHotend(0)>MAX_HOTEND_TEMP_CALIBRATION) || (degBed() > MAX_BED_TEMP_CALIBRATION)) {
  1213. lcd_display_message_fullscreen_P(MSG_WAITING_TEMP);
  1214. lcd.setCursor(0, 4);
  1215. lcd.print(LCD_STR_THERMOMETER[0]);
  1216. lcd.print(ftostr3(degHotend(0)));
  1217. lcd.print("/0");
  1218. lcd.print(LCD_STR_DEGREE);
  1219. lcd.setCursor(9, 4);
  1220. lcd.print(LCD_STR_BEDTEMP[0]);
  1221. lcd.print(ftostr3(degBed()));
  1222. lcd.print("/0");
  1223. lcd.print(LCD_STR_DEGREE);
  1224. lcd_set_custom_characters();
  1225. delay_keep_alive(1000);
  1226. }
  1227. lcd_set_custom_characters_arrows();
  1228. }
  1229. // Lets the user move the Z carriage up to the end stoppers.
  1230. // When done, it sets the current Z to Z_MAX_POS and returns true.
  1231. // Otherwise the Z calibration is not changed and false is returned.
  1232. bool lcd_calibrate_z_end_stop_manual(bool only_z)
  1233. {
  1234. bool clean_nozzle_asked = false;
  1235. // Don't know where we are. Let's claim we are Z=0, so the soft end stops will not be triggered when moving up.
  1236. current_position[Z_AXIS] = 0;
  1237. plan_set_position(current_position[X_AXIS], current_position[Y_AXIS], current_position[Z_AXIS], current_position[E_AXIS]);
  1238. // Until confirmed by the confirmation dialog.
  1239. for (;;) {
  1240. unsigned long previous_millis_cmd = millis();
  1241. const char *msg = only_z ? MSG_MOVE_CARRIAGE_TO_THE_TOP_Z : MSG_MOVE_CARRIAGE_TO_THE_TOP;
  1242. const char *msg_next = lcd_display_message_fullscreen_P(msg);
  1243. const bool multi_screen = msg_next != NULL;
  1244. unsigned long previous_millis_msg = millis();
  1245. // Until the user finishes the z up movement.
  1246. encoderDiff = 0;
  1247. encoderPosition = 0;
  1248. for (;;) {
  1249. // if (millis() - previous_millis_cmd > LCD_TIMEOUT_TO_STATUS)
  1250. // goto canceled;
  1251. manage_heater();
  1252. manage_inactivity(true);
  1253. if (abs(encoderDiff) >= ENCODER_PULSES_PER_STEP) {
  1254. delay(50);
  1255. previous_millis_cmd = millis();
  1256. encoderPosition += abs(encoderDiff / ENCODER_PULSES_PER_STEP);
  1257. encoderDiff = 0;
  1258. if (! planner_queue_full()) {
  1259. // Only move up, whatever direction the user rotates the encoder.
  1260. current_position[Z_AXIS] += fabs(encoderPosition);
  1261. encoderPosition = 0;
  1262. plan_buffer_line(current_position[X_AXIS], current_position[Y_AXIS], current_position[Z_AXIS], current_position[E_AXIS], manual_feedrate[Z_AXIS] / 60, active_extruder);
  1263. }
  1264. }
  1265. if (lcd_clicked()) {
  1266. // Abort a move if in progress.
  1267. planner_abort_hard();
  1268. while (lcd_clicked()) ;
  1269. delay(10);
  1270. while (lcd_clicked()) ;
  1271. break;
  1272. }
  1273. if (multi_screen && millis() - previous_millis_msg > 5000) {
  1274. if (msg_next == NULL)
  1275. msg_next = msg;
  1276. msg_next = lcd_display_message_fullscreen_P(msg_next);
  1277. previous_millis_msg = millis();
  1278. }
  1279. }
  1280. if (! clean_nozzle_asked) {
  1281. lcd_show_fullscreen_message_and_wait_P(MSG_CONFIRM_NOZZLE_CLEAN);
  1282. clean_nozzle_asked = true;
  1283. }
  1284. // Let the user confirm, that the Z carriage is at the top end stoppers.
  1285. int8_t result = lcd_show_fullscreen_message_yes_no_and_wait_P(MSG_CONFIRM_CARRIAGE_AT_THE_TOP, false);
  1286. if (result == -1)
  1287. goto canceled;
  1288. else if (result == 1)
  1289. goto calibrated;
  1290. // otherwise perform another round of the Z up dialog.
  1291. }
  1292. calibrated:
  1293. // Let the machine think the Z axis is a bit higher than it is, so it will not home into the bed
  1294. // during the search for the induction points.
  1295. current_position[Z_AXIS] = Z_MAX_POS-3.f;
  1296. plan_set_position(current_position[X_AXIS], current_position[Y_AXIS], current_position[Z_AXIS], current_position[E_AXIS]);
  1297. if(only_z){/*
  1298. lcd_display_message_fullscreen_P(MSG_MEASURE_BED_REFERENCE_HEIGHT_LINE1);
  1299. lcd_implementation_print_at(0, 3, 1);
  1300. lcd_printPGM(MSG_MEASURE_BED_REFERENCE_HEIGHT_LINE2);*/
  1301. }else{
  1302. lcd_show_fullscreen_message_and_wait_P(MSG_PAPER);
  1303. lcd_display_message_fullscreen_P(MSG_FIND_BED_OFFSET_AND_SKEW_LINE1);
  1304. lcd_implementation_print_at(0, 2, 1);
  1305. lcd_printPGM(MSG_FIND_BED_OFFSET_AND_SKEW_LINE2);
  1306. }
  1307. return true;
  1308. canceled:
  1309. return false;
  1310. }
  1311. static inline bool pgm_is_whitespace(const char *c_addr)
  1312. {
  1313. const char c = pgm_read_byte(c_addr);
  1314. return c == ' ' || c == '\t' || c == '\r' || c == '\n';
  1315. }
  1316. static inline bool pgm_is_interpunction(const char *c_addr)
  1317. {
  1318. const char c = pgm_read_byte(c_addr);
  1319. return c == '.' || c == ',' || c == ':'|| c == ';' || c == '?' || c == '!' || c == '/';
  1320. }
  1321. const char* lcd_display_message_fullscreen_P(const char *msg, uint8_t &nlines)
  1322. {
  1323. // Disable update of the screen by the usual lcd_update() routine.
  1324. lcd_update_enable(false);
  1325. lcd_implementation_clear();
  1326. lcd.setCursor(0, 0);
  1327. const char *msgend = msg;
  1328. uint8_t row = 0;
  1329. bool multi_screen = false;
  1330. for (; row < 4; ++ row) {
  1331. while (pgm_is_whitespace(msg))
  1332. ++ msg;
  1333. if (pgm_read_byte(msg) == 0)
  1334. // End of the message.
  1335. break;
  1336. lcd.setCursor(0, row);
  1337. uint8_t linelen = min(strlen_P(msg), 20);
  1338. const char *msgend2 = msg + linelen;
  1339. msgend = msgend2;
  1340. if (row == 3 && linelen == 20) {
  1341. // Last line of the display, full line shall be displayed.
  1342. // Find out, whether this message will be split into multiple screens.
  1343. while (pgm_is_whitespace(msgend))
  1344. ++ msgend;
  1345. multi_screen = pgm_read_byte(msgend) != 0;
  1346. if (multi_screen)
  1347. msgend = (msgend2 -= 2);
  1348. }
  1349. if (pgm_read_byte(msgend) != 0 && ! pgm_is_whitespace(msgend) && ! pgm_is_interpunction(msgend)) {
  1350. // Splitting a word. Find the start of the current word.
  1351. while (msgend > msg && ! pgm_is_whitespace(msgend - 1))
  1352. -- msgend;
  1353. if (msgend == msg)
  1354. // Found a single long word, which cannot be split. Just cut it.
  1355. msgend = msgend2;
  1356. }
  1357. for (; msg < msgend; ++ msg) {
  1358. char c = char(pgm_read_byte(msg));
  1359. if (c == '~')
  1360. c = ' ';
  1361. lcd.print(c);
  1362. }
  1363. }
  1364. if (multi_screen) {
  1365. // Display the "next screen" indicator character.
  1366. // lcd_set_custom_characters_arrows();
  1367. lcd_set_custom_characters_nextpage();
  1368. lcd.setCursor(19, 3);
  1369. // Display the down arrow.
  1370. lcd.print(char(1));
  1371. }
  1372. nlines = row;
  1373. return multi_screen ? msgend : NULL;
  1374. }
  1375. void lcd_show_fullscreen_message_and_wait_P(const char *msg)
  1376. {
  1377. const char *msg_next = lcd_display_message_fullscreen_P(msg);
  1378. bool multi_screen = msg_next != NULL;
  1379. // Until confirmed by a button click.
  1380. for (;;) {
  1381. // Wait for 5 seconds before displaying the next text.
  1382. for (uint8_t i = 0; i < 100; ++ i) {
  1383. delay_keep_alive(50);
  1384. if (lcd_clicked()) {
  1385. while (lcd_clicked()) ;
  1386. delay(10);
  1387. while (lcd_clicked()) ;
  1388. return;
  1389. }
  1390. }
  1391. if (multi_screen) {
  1392. if (msg_next == NULL)
  1393. msg_next = msg;
  1394. msg_next = lcd_display_message_fullscreen_P(msg_next);
  1395. }
  1396. }
  1397. }
  1398. void lcd_wait_for_click()
  1399. {
  1400. for (;;) {
  1401. manage_heater();
  1402. manage_inactivity(true);
  1403. if (lcd_clicked()) {
  1404. while (lcd_clicked()) ;
  1405. delay(10);
  1406. while (lcd_clicked()) ;
  1407. return;
  1408. }
  1409. }
  1410. }
  1411. int8_t lcd_show_fullscreen_message_yes_no_and_wait_P(const char *msg, bool allow_timeouting, bool default_yes)
  1412. {
  1413. lcd_display_message_fullscreen_P(msg);
  1414. if (default_yes) {
  1415. lcd.setCursor(0, 2);
  1416. lcd_printPGM(PSTR(">"));
  1417. lcd_printPGM(MSG_YES);
  1418. lcd.setCursor(1, 3);
  1419. lcd_printPGM(MSG_NO);
  1420. }
  1421. else {
  1422. lcd.setCursor(1, 2);
  1423. lcd_printPGM(MSG_YES);
  1424. lcd.setCursor(0, 3);
  1425. lcd_printPGM(PSTR(">"));
  1426. lcd_printPGM(MSG_NO);
  1427. }
  1428. bool yes = default_yes ? true : false;
  1429. // Wait for user confirmation or a timeout.
  1430. unsigned long previous_millis_cmd = millis();
  1431. int8_t enc_dif = encoderDiff;
  1432. for (;;) {
  1433. if (allow_timeouting && millis() - previous_millis_cmd > LCD_TIMEOUT_TO_STATUS)
  1434. return -1;
  1435. manage_heater();
  1436. manage_inactivity(true);
  1437. if (abs(enc_dif - encoderDiff) > 4) {
  1438. lcd.setCursor(0, 2);
  1439. if (enc_dif < encoderDiff && yes) {
  1440. lcd_printPGM((PSTR(" ")));
  1441. lcd.setCursor(0, 3);
  1442. lcd_printPGM((PSTR(">")));
  1443. yes = false;
  1444. }
  1445. else if (enc_dif > encoderDiff && !yes) {
  1446. lcd_printPGM((PSTR(">")));
  1447. lcd.setCursor(0, 3);
  1448. lcd_printPGM((PSTR(" ")));
  1449. yes = true;
  1450. }
  1451. enc_dif = encoderDiff;
  1452. }
  1453. if (lcd_clicked()) {
  1454. while (lcd_clicked());
  1455. delay(10);
  1456. while (lcd_clicked());
  1457. return yes;
  1458. }
  1459. }
  1460. }
  1461. void lcd_bed_calibration_show_result(BedSkewOffsetDetectionResultType result, uint8_t point_too_far_mask)
  1462. {
  1463. const char *msg = NULL;
  1464. if (result == BED_SKEW_OFFSET_DETECTION_POINT_NOT_FOUND) {
  1465. lcd_show_fullscreen_message_and_wait_P(MSG_BED_SKEW_OFFSET_DETECTION_POINT_NOT_FOUND);
  1466. } else if (result == BED_SKEW_OFFSET_DETECTION_FITTING_FAILED) {
  1467. if (point_too_far_mask == 0)
  1468. msg = MSG_BED_SKEW_OFFSET_DETECTION_FITTING_FAILED;
  1469. else if (point_too_far_mask == 2 || point_too_far_mask == 7)
  1470. // Only the center point or all the three front points.
  1471. msg = MSG_BED_SKEW_OFFSET_DETECTION_FAILED_FRONT_BOTH_FAR;
  1472. else if (point_too_far_mask & 1 == 0)
  1473. // The right and maybe the center point out of reach.
  1474. msg = MSG_BED_SKEW_OFFSET_DETECTION_FAILED_FRONT_RIGHT_FAR;
  1475. else
  1476. // The left and maybe the center point out of reach.
  1477. msg = MSG_BED_SKEW_OFFSET_DETECTION_FAILED_FRONT_LEFT_FAR;
  1478. lcd_show_fullscreen_message_and_wait_P(msg);
  1479. } else {
  1480. if (point_too_far_mask != 0) {
  1481. if (point_too_far_mask == 2 || point_too_far_mask == 7)
  1482. // Only the center point or all the three front points.
  1483. msg = MSG_BED_SKEW_OFFSET_DETECTION_WARNING_FRONT_BOTH_FAR;
  1484. else if (point_too_far_mask & 1 == 0)
  1485. // The right and maybe the center point out of reach.
  1486. msg = MSG_BED_SKEW_OFFSET_DETECTION_WARNING_FRONT_RIGHT_FAR;
  1487. else
  1488. // The left and maybe the center point out of reach.
  1489. msg = MSG_BED_SKEW_OFFSET_DETECTION_WARNING_FRONT_LEFT_FAR;
  1490. lcd_show_fullscreen_message_and_wait_P(msg);
  1491. }
  1492. if (point_too_far_mask == 0 || result > 0) {
  1493. switch (result) {
  1494. default:
  1495. // should not happen
  1496. msg = MSG_BED_SKEW_OFFSET_DETECTION_FITTING_FAILED;
  1497. break;
  1498. case BED_SKEW_OFFSET_DETECTION_PERFECT:
  1499. msg = MSG_BED_SKEW_OFFSET_DETECTION_PERFECT;
  1500. break;
  1501. case BED_SKEW_OFFSET_DETECTION_SKEW_MILD:
  1502. msg = MSG_BED_SKEW_OFFSET_DETECTION_SKEW_MILD;
  1503. break;
  1504. case BED_SKEW_OFFSET_DETECTION_SKEW_EXTREME:
  1505. msg = MSG_BED_SKEW_OFFSET_DETECTION_SKEW_EXTREME;
  1506. break;
  1507. }
  1508. lcd_show_fullscreen_message_and_wait_P(msg);
  1509. }
  1510. }
  1511. }
  1512. static void lcd_show_end_stops() {
  1513. lcd.setCursor(0, 0);
  1514. lcd_printPGM((PSTR("End stops diag")));
  1515. lcd.setCursor(0, 1);
  1516. lcd_printPGM((READ(X_MIN_PIN) ^ X_MIN_ENDSTOP_INVERTING == 1) ? (PSTR("X1")) : (PSTR("X0")));
  1517. lcd.setCursor(0, 2);
  1518. lcd_printPGM((READ(Y_MIN_PIN) ^ Y_MIN_ENDSTOP_INVERTING == 1) ? (PSTR("Y1")) : (PSTR("Y0")));
  1519. lcd.setCursor(0, 3);
  1520. lcd_printPGM((READ(Z_MIN_PIN) ^ Z_MIN_ENDSTOP_INVERTING == 1) ? (PSTR("Z1")) : (PSTR("Z0")));
  1521. }
  1522. static void menu_show_end_stops() {
  1523. lcd_show_end_stops();
  1524. if (LCD_CLICKED) lcd_goto_menu(lcd_calibration_menu);
  1525. }
  1526. // Lets the user move the Z carriage up to the end stoppers.
  1527. // When done, it sets the current Z to Z_MAX_POS and returns true.
  1528. // Otherwise the Z calibration is not changed and false is returned.
  1529. void lcd_diag_show_end_stops()
  1530. {
  1531. int enc_dif = encoderDiff;
  1532. lcd_implementation_clear();
  1533. for (;;) {
  1534. manage_heater();
  1535. manage_inactivity(true);
  1536. lcd_show_end_stops();
  1537. if (lcd_clicked()) {
  1538. while (lcd_clicked()) ;
  1539. delay(10);
  1540. while (lcd_clicked()) ;
  1541. break;
  1542. }
  1543. }
  1544. lcd_implementation_clear();
  1545. lcd_return_to_status();
  1546. }
  1547. void prusa_statistics(int _message) {
  1548. switch (_message)
  1549. {
  1550. case 0: // default message
  1551. if (IS_SD_PRINTING)
  1552. {
  1553. SERIAL_ECHO("{");
  1554. prusa_stat_printerstatus(4);
  1555. status_number = 4;
  1556. prusa_stat_printinfo();
  1557. SERIAL_ECHOLN("}");
  1558. }
  1559. else
  1560. {
  1561. SERIAL_ECHO("{");
  1562. prusa_stat_printerstatus(1);
  1563. status_number = 1;
  1564. SERIAL_ECHOLN("}");
  1565. }
  1566. break;
  1567. case 1: // 1 heating
  1568. farm_status = 2;
  1569. SERIAL_ECHO("{");
  1570. prusa_stat_printerstatus(2);
  1571. status_number = 2;
  1572. SERIAL_ECHOLN("}");
  1573. farm_timer = 1;
  1574. break;
  1575. case 2: // heating done
  1576. farm_status = 3;
  1577. SERIAL_ECHO("{");
  1578. prusa_stat_printerstatus(3);
  1579. status_number = 3;
  1580. SERIAL_ECHOLN("}");
  1581. farm_timer = 1;
  1582. if (IS_SD_PRINTING)
  1583. {
  1584. farm_status = 4;
  1585. SERIAL_ECHO("{");
  1586. prusa_stat_printerstatus(4);
  1587. status_number = 4;
  1588. SERIAL_ECHOLN("}");
  1589. }
  1590. else
  1591. {
  1592. SERIAL_ECHO("{");
  1593. prusa_stat_printerstatus(3);
  1594. status_number = 3;
  1595. SERIAL_ECHOLN("}");;
  1596. }
  1597. farm_timer = 1;
  1598. break;
  1599. case 3: // filament change
  1600. break;
  1601. case 4: // print succesfull
  1602. SERIAL_ECHOLN("{[RES:1]}");
  1603. farm_timer = 2;
  1604. break;
  1605. case 5: // print not succesfull
  1606. SERIAL_ECHOLN("{[RES:0]}");
  1607. farm_timer = 2;
  1608. break;
  1609. case 6: // print done
  1610. SERIAL_ECHOLN("{[PRN:8]}");
  1611. status_number = 8;
  1612. farm_timer = 2;
  1613. break;
  1614. case 7: // print done - stopped
  1615. SERIAL_ECHOLN("{[PRN:9]}");
  1616. status_number = 9;
  1617. farm_timer = 2;
  1618. break;
  1619. case 8: // printer started
  1620. SERIAL_ECHO("{[PRN:0][PFN:");
  1621. status_number = 0;
  1622. SERIAL_ECHO(farm_no);
  1623. SERIAL_ECHOLN("]}");
  1624. farm_timer = 2;
  1625. break;
  1626. case 20: // echo farm no
  1627. SERIAL_ECHO("{[PFN:");
  1628. SERIAL_ECHO(farm_no);
  1629. SERIAL_ECHOLN("]}");
  1630. farm_timer = 5;
  1631. break;
  1632. case 21: // temperatures
  1633. SERIAL_ECHO("{");
  1634. prusa_stat_temperatures();
  1635. SERIAL_ECHOLN("}");
  1636. break;
  1637. case 22: // waiting for filament change
  1638. SERIAL_ECHOLN("{[PRN:5]}");
  1639. status_number = 5;
  1640. break;
  1641. case 90: // Error - Thermal Runaway
  1642. SERIAL_ECHOLN("{[ERR:1]}");
  1643. break;
  1644. case 91: // Error - Thermal Runaway Preheat
  1645. SERIAL_ECHOLN("{[ERR:2]}");
  1646. break;
  1647. case 92: // Error - Min temp
  1648. SERIAL_ECHOLN("{[ERR:3]}");
  1649. break;
  1650. case 93: // Error - Max temp
  1651. SERIAL_ECHOLN("{[ERR:4]}");
  1652. break;
  1653. case 99: // heartbeat
  1654. SERIAL_ECHO("{[PRN:99]");
  1655. prusa_stat_temperatures();
  1656. SERIAL_ECHOLN("}");
  1657. break;
  1658. }
  1659. }
  1660. static void prusa_stat_printerstatus(int _status)
  1661. {
  1662. SERIAL_ECHO("[PRN:");
  1663. SERIAL_ECHO(_status);
  1664. SERIAL_ECHO("]");
  1665. }
  1666. static void prusa_stat_temperatures()
  1667. {
  1668. SERIAL_ECHO("[ST0:");
  1669. SERIAL_ECHO(target_temperature[0]);
  1670. SERIAL_ECHO("][STB:");
  1671. SERIAL_ECHO(target_temperature_bed);
  1672. SERIAL_ECHO("][AT0:");
  1673. SERIAL_ECHO(current_temperature[0]);
  1674. SERIAL_ECHO("][ATB:");
  1675. SERIAL_ECHO(current_temperature_bed);
  1676. SERIAL_ECHO("]");
  1677. }
  1678. static void prusa_stat_printinfo()
  1679. {
  1680. SERIAL_ECHO("[TFU:");
  1681. SERIAL_ECHO(total_filament_used);
  1682. SERIAL_ECHO("][PCD:");
  1683. SERIAL_ECHO(itostr3(card.percentDone()));
  1684. SERIAL_ECHO("][FEM:");
  1685. SERIAL_ECHO(itostr3(feedmultiply));
  1686. SERIAL_ECHO("][FNM:");
  1687. SERIAL_ECHO(longFilenameOLD);
  1688. SERIAL_ECHO("][TIM:");
  1689. if (starttime != 0)
  1690. {
  1691. SERIAL_ECHO(millis() / 1000 - starttime / 1000);
  1692. }
  1693. else
  1694. {
  1695. SERIAL_ECHO(0);
  1696. }
  1697. SERIAL_ECHO("][FWR:");
  1698. SERIAL_ECHO(FW_version);
  1699. SERIAL_ECHO("]");
  1700. }
  1701. void lcd_pick_babystep(){
  1702. int enc_dif = 0;
  1703. int cursor_pos = 1;
  1704. int fsm = 0;
  1705. lcd_implementation_clear();
  1706. lcd.setCursor(0, 0);
  1707. lcd_printPGM(MSG_PICK_Z);
  1708. lcd.setCursor(3, 2);
  1709. lcd.print("1");
  1710. lcd.setCursor(3, 3);
  1711. lcd.print("2");
  1712. lcd.setCursor(12, 2);
  1713. lcd.print("3");
  1714. lcd.setCursor(12, 3);
  1715. lcd.print("4");
  1716. lcd.setCursor(1, 2);
  1717. lcd.print(">");
  1718. enc_dif = encoderDiff;
  1719. while (fsm == 0) {
  1720. manage_heater();
  1721. manage_inactivity(true);
  1722. if ( abs((enc_dif - encoderDiff)) > 4 ) {
  1723. if ( (abs(enc_dif - encoderDiff)) > 1 ) {
  1724. if (enc_dif > encoderDiff ) {
  1725. cursor_pos --;
  1726. }
  1727. if (enc_dif < encoderDiff ) {
  1728. cursor_pos ++;
  1729. }
  1730. if (cursor_pos > 4) {
  1731. cursor_pos = 4;
  1732. }
  1733. if (cursor_pos < 1) {
  1734. cursor_pos = 1;
  1735. }
  1736. lcd.setCursor(1, 2);
  1737. lcd.print(" ");
  1738. lcd.setCursor(1, 3);
  1739. lcd.print(" ");
  1740. lcd.setCursor(10, 2);
  1741. lcd.print(" ");
  1742. lcd.setCursor(10, 3);
  1743. lcd.print(" ");
  1744. if (cursor_pos < 3) {
  1745. lcd.setCursor(1, cursor_pos+1);
  1746. lcd.print(">");
  1747. }else{
  1748. lcd.setCursor(10, cursor_pos-1);
  1749. lcd.print(">");
  1750. }
  1751. enc_dif = encoderDiff;
  1752. delay(100);
  1753. }
  1754. }
  1755. if (lcd_clicked()) {
  1756. fsm = cursor_pos;
  1757. int babyStepZ;
  1758. EEPROM_read_B(EEPROM_BABYSTEP_Z0+((fsm-1)*2),&babyStepZ);
  1759. EEPROM_save_B(EEPROM_BABYSTEP_Z,&babyStepZ);
  1760. calibration_status_store(CALIBRATION_STATUS_CALIBRATED);
  1761. delay(500);
  1762. }
  1763. };
  1764. lcd_implementation_clear();
  1765. lcd_return_to_status();
  1766. }
  1767. void lcd_move_menu_axis()
  1768. {
  1769. START_MENU();
  1770. MENU_ITEM(back, MSG_SETTINGS, lcd_settings_menu);
  1771. MENU_ITEM(submenu, MSG_MOVE_X, lcd_move_x);
  1772. MENU_ITEM(submenu, MSG_MOVE_Y, lcd_move_y);
  1773. MENU_ITEM(submenu, MSG_MOVE_Z, lcd_move_z);
  1774. MENU_ITEM(submenu, MSG_MOVE_E, lcd_move_e);
  1775. END_MENU();
  1776. }
  1777. static void lcd_move_menu_1mm()
  1778. {
  1779. move_menu_scale = 1.0;
  1780. lcd_move_menu_axis();
  1781. }
  1782. void EEPROM_save(int pos, uint8_t* value, uint8_t size)
  1783. {
  1784. do
  1785. {
  1786. eeprom_write_byte((unsigned char*)pos, *value);
  1787. pos++;
  1788. value++;
  1789. } while (--size);
  1790. }
  1791. void EEPROM_read(int pos, uint8_t* value, uint8_t size)
  1792. {
  1793. do
  1794. {
  1795. *value = eeprom_read_byte((unsigned char*)pos);
  1796. pos++;
  1797. value++;
  1798. } while (--size);
  1799. }
  1800. static void lcd_silent_mode_set() {
  1801. SilentModeMenu = !SilentModeMenu;
  1802. eeprom_update_byte((unsigned char *)EEPROM_SILENT, SilentModeMenu);
  1803. digipot_init();
  1804. lcd_goto_menu(lcd_settings_menu, 7);
  1805. }
  1806. static void lcd_set_lang(unsigned char lang) {
  1807. lang_selected = lang;
  1808. firstrun = 1;
  1809. eeprom_update_byte((unsigned char *)EEPROM_LANG, lang);
  1810. /*langsel=0;*/
  1811. if (langsel == LANGSEL_MODAL)
  1812. // From modal mode to an active mode? This forces the menu to return to the setup menu.
  1813. langsel = LANGSEL_ACTIVE;
  1814. }
  1815. void lcd_force_language_selection() {
  1816. eeprom_update_byte((unsigned char *)EEPROM_LANG, LANG_ID_FORCE_SELECTION);
  1817. }
  1818. static void lcd_language_menu()
  1819. {
  1820. START_MENU();
  1821. if (langsel == LANGSEL_OFF) {
  1822. MENU_ITEM(back, MSG_SETTINGS, lcd_settings_menu);
  1823. } else if (langsel == LANGSEL_ACTIVE) {
  1824. MENU_ITEM(back, MSG_WATCH, lcd_status_screen);
  1825. }
  1826. for (int i=0;i<LANG_NUM;i++){
  1827. MENU_ITEM(setlang, MSG_LANGUAGE_NAME_EXPLICIT(i), i);
  1828. }
  1829. END_MENU();
  1830. }
  1831. void lcd_mesh_bedleveling()
  1832. {
  1833. enquecommand_P(PSTR("G80"));
  1834. lcd_return_to_status();
  1835. }
  1836. void lcd_mesh_calibration()
  1837. {
  1838. enquecommand_P(PSTR("M45"));
  1839. lcd_return_to_status();
  1840. }
  1841. void lcd_mesh_calibration_z()
  1842. {
  1843. enquecommand_P(PSTR("M45 Z"));
  1844. lcd_return_to_status();
  1845. }
  1846. #ifndef SNMM
  1847. /*void lcd_calibrate_extruder() {
  1848. if (degHotend0() > EXTRUDE_MINTEMP)
  1849. {
  1850. current_position[E_AXIS] = 0; //set initial position to zero
  1851. plan_set_e_position(current_position[E_AXIS]);
  1852. //long steps_start = st_get_position(E_AXIS);
  1853. long steps_final;
  1854. float e_steps_per_unit;
  1855. float feedrate = (180 / axis_steps_per_unit[E_AXIS]) * 1; //3 //initial automatic extrusion feedrate (depends on current value of axis_steps_per_unit to avoid too fast extrusion)
  1856. float e_shift_calibration = (axis_steps_per_unit[E_AXIS] > 180 ) ? ((180 / axis_steps_per_unit[E_AXIS]) * 70): 70; //length of initial automatic extrusion sequence
  1857. const char *msg_e_cal_knob = MSG_E_CAL_KNOB;
  1858. const char *msg_next_e_cal_knob = lcd_display_message_fullscreen_P(msg_e_cal_knob);
  1859. const bool multi_screen = msg_next_e_cal_knob != NULL;
  1860. unsigned long msg_millis;
  1861. lcd_show_fullscreen_message_and_wait_P(MSG_MARK_FIL);
  1862. lcd_implementation_clear();
  1863. lcd.setCursor(0, 1); lcd_printPGM(MSG_PLEASE_WAIT);
  1864. current_position[E_AXIS] += e_shift_calibration;
  1865. plan_buffer_line(current_position[X_AXIS], current_position[Y_AXIS], current_position[Z_AXIS], current_position[E_AXIS], feedrate, active_extruder);
  1866. st_synchronize();
  1867. lcd_display_message_fullscreen_P(msg_e_cal_knob);
  1868. msg_millis = millis();
  1869. while (!LCD_CLICKED) {
  1870. if (multi_screen && millis() - msg_millis > 5000) {
  1871. if (msg_next_e_cal_knob == NULL)
  1872. msg_next_e_cal_knob = msg_e_cal_knob;
  1873. msg_next_e_cal_knob = lcd_display_message_fullscreen_P(msg_next_e_cal_knob);
  1874. msg_millis = millis();
  1875. }
  1876. //manage_inactivity(true);
  1877. manage_heater();
  1878. if (abs(encoderDiff) >= ENCODER_PULSES_PER_STEP) { //adjusting mark by knob rotation
  1879. delay_keep_alive(50);
  1880. //previous_millis_cmd = millis();
  1881. encoderPosition += (encoderDiff / ENCODER_PULSES_PER_STEP);
  1882. encoderDiff = 0;
  1883. if (!planner_queue_full()) {
  1884. current_position[E_AXIS] += float(abs((int)encoderPosition)) * 0.01; //0.05
  1885. encoderPosition = 0;
  1886. plan_buffer_line(current_position[X_AXIS], current_position[Y_AXIS], current_position[Z_AXIS], current_position[E_AXIS], feedrate, active_extruder);
  1887. }
  1888. }
  1889. }
  1890. steps_final = current_position[E_AXIS] * axis_steps_per_unit[E_AXIS];
  1891. //steps_final = st_get_position(E_AXIS);
  1892. lcdDrawUpdate = 1;
  1893. e_steps_per_unit = ((float)(steps_final)) / 100.0f;
  1894. if (e_steps_per_unit < MIN_E_STEPS_PER_UNIT) e_steps_per_unit = MIN_E_STEPS_PER_UNIT;
  1895. if (e_steps_per_unit > MAX_E_STEPS_PER_UNIT) e_steps_per_unit = MAX_E_STEPS_PER_UNIT;
  1896. lcd_implementation_clear();
  1897. axis_steps_per_unit[E_AXIS] = e_steps_per_unit;
  1898. enquecommand_P(PSTR("M500")); //store settings to eeprom
  1899. //lcd_implementation_drawedit(PSTR("Result"), ftostr31(axis_steps_per_unit[E_AXIS]));
  1900. //delay_keep_alive(2000);
  1901. delay_keep_alive(500);
  1902. lcd_show_fullscreen_message_and_wait_P(MSG_CLEAN_NOZZLE_E);
  1903. lcd_update_enable(true);
  1904. lcdDrawUpdate = 2;
  1905. }
  1906. else
  1907. {
  1908. lcd_implementation_clear();
  1909. lcd.setCursor(0, 0);
  1910. lcd_printPGM(MSG_ERROR);
  1911. lcd.setCursor(0, 2);
  1912. lcd_printPGM(MSG_PREHEAT_NOZZLE);
  1913. delay(2000);
  1914. lcd_implementation_clear();
  1915. }
  1916. lcd_return_to_status();
  1917. }
  1918. void lcd_extr_cal_reset() {
  1919. float tmp1[] = DEFAULT_AXIS_STEPS_PER_UNIT;
  1920. axis_steps_per_unit[E_AXIS] = tmp1[3];
  1921. //extrudemultiply = 100;
  1922. enquecommand_P(PSTR("M500"));
  1923. }*/
  1924. #endif
  1925. void lcd_toshiba_flash_air_compatibility_toggle()
  1926. {
  1927. card.ToshibaFlashAir_enable(! card.ToshibaFlashAir_isEnabled());
  1928. eeprom_update_byte((uint8_t*)EEPROM_TOSHIBA_FLASH_AIR_COMPATIBLITY, card.ToshibaFlashAir_isEnabled());
  1929. }
  1930. static void lcd_settings_menu()
  1931. {
  1932. EEPROM_read(EEPROM_SILENT, (uint8_t*)&SilentModeMenu, sizeof(SilentModeMenu));
  1933. START_MENU();
  1934. MENU_ITEM(back, MSG_MAIN, lcd_main_menu);
  1935. MENU_ITEM(submenu, MSG_TEMPERATURE, lcd_control_temperature_menu);
  1936. if (!homing_flag)
  1937. {
  1938. MENU_ITEM(submenu, MSG_MOVE_AXIS, lcd_move_menu_1mm);
  1939. }
  1940. if (!isPrintPaused)
  1941. {
  1942. MENU_ITEM(gcode, MSG_DISABLE_STEPPERS, PSTR("M84"));
  1943. }
  1944. if ((SilentModeMenu == 0) || (farm_mode) ) {
  1945. MENU_ITEM(function, MSG_SILENT_MODE_OFF, lcd_silent_mode_set);
  1946. } else {
  1947. MENU_ITEM(function, MSG_SILENT_MODE_ON, lcd_silent_mode_set);
  1948. }
  1949. if (!isPrintPaused && !homing_flag)
  1950. {
  1951. MENU_ITEM(submenu, MSG_BABYSTEP_Z, lcd_babystep_z);
  1952. }
  1953. MENU_ITEM(submenu, MSG_LANGUAGE_SELECT, lcd_language_menu);
  1954. if (card.ToshibaFlashAir_isEnabled()) {
  1955. MENU_ITEM(function, MSG_TOSHIBA_FLASH_AIR_COMPATIBILITY_ON, lcd_toshiba_flash_air_compatibility_toggle);
  1956. } else {
  1957. MENU_ITEM(function, MSG_TOSHIBA_FLASH_AIR_COMPATIBILITY_OFF, lcd_toshiba_flash_air_compatibility_toggle);
  1958. }
  1959. if (farm_mode)
  1960. {
  1961. MENU_ITEM(submenu, PSTR("Farm number"), lcd_farm_no);
  1962. }
  1963. END_MENU();
  1964. }
  1965. static void lcd_calibration_menu()
  1966. {
  1967. START_MENU();
  1968. MENU_ITEM(back, MSG_MAIN, lcd_main_menu);
  1969. if (!isPrintPaused)
  1970. {
  1971. MENU_ITEM(function, MSG_SELFTEST, lcd_selftest);
  1972. #ifndef MESH_BED_LEVELING
  1973. // MK1
  1974. // "Calibrate Z"
  1975. MENU_ITEM(gcode, MSG_HOMEYZ, PSTR("G28 Z"));
  1976. #else
  1977. // MK2
  1978. MENU_ITEM(function, MSG_CALIBRATE_BED, lcd_mesh_calibration);
  1979. // "Calibrate Z" with storing the reference values to EEPROM.
  1980. MENU_ITEM(submenu, MSG_HOMEYZ, lcd_mesh_calibration_z);
  1981. #ifndef SNMM
  1982. //MENU_ITEM(function, MSG_CALIBRATE_E, lcd_calibrate_extruder);
  1983. #endif
  1984. // "Mesh Bed Leveling"
  1985. MENU_ITEM(submenu, MSG_MESH_BED_LEVELING, lcd_mesh_bedleveling);
  1986. #endif
  1987. MENU_ITEM(gcode, MSG_AUTO_HOME, PSTR("G28 W"));
  1988. MENU_ITEM(submenu, MSG_BED_CORRECTION_MENU, lcd_adjust_bed);
  1989. MENU_ITEM(submenu, MSG_SHOW_END_STOPS, menu_show_end_stops);
  1990. MENU_ITEM(gcode, MSG_CALIBRATE_BED_RESET, PSTR("M44"));
  1991. #ifndef SNMM
  1992. //MENU_ITEM(function, MSG_RESET_CALIBRATE_E, lcd_extr_cal_reset);
  1993. #endif
  1994. }
  1995. END_MENU();
  1996. }
  1997. /*
  1998. void lcd_mylang_top(int hlaska) {
  1999. lcd.setCursor(0,0);
  2000. lcd.print(" ");
  2001. lcd.setCursor(0,0);
  2002. lcd_printPGM(MSG_ALL[hlaska-1][LANGUAGE_SELECT]);
  2003. }
  2004. void lcd_mylang_drawmenu(int cursor) {
  2005. int first = 0;
  2006. if (cursor>2) first = cursor-2;
  2007. if (cursor==LANG_NUM) first = LANG_NUM-3;
  2008. lcd.setCursor(0, 1);
  2009. lcd.print(" ");
  2010. lcd.setCursor(1, 1);
  2011. lcd_printPGM(MSG_ALL[first][LANGUAGE_NAME]);
  2012. lcd.setCursor(0, 2);
  2013. lcd.print(" ");
  2014. lcd.setCursor(1, 2);
  2015. lcd_printPGM(MSG_ALL[first+1][LANGUAGE_NAME]);
  2016. lcd.setCursor(0, 3);
  2017. lcd.print(" ");
  2018. lcd.setCursor(1, 3);
  2019. lcd_printPGM(MSG_ALL[first+2][LANGUAGE_NAME]);
  2020. if (cursor==1) lcd.setCursor(0, 1);
  2021. if (cursor>1 && cursor<LANG_NUM) lcd.setCursor(0, 2);
  2022. if (cursor==LANG_NUM) lcd.setCursor(0, 3);
  2023. lcd.print(">");
  2024. if (cursor<LANG_NUM-1) {
  2025. lcd.setCursor(19,3);
  2026. lcd.print("\x01");
  2027. }
  2028. if (cursor>2) {
  2029. lcd.setCursor(19,1);
  2030. lcd.print("^");
  2031. }
  2032. }
  2033. */
  2034. void lcd_mylang_drawmenu(int cursor) {
  2035. int first = 0;
  2036. if (cursor>3) first = cursor-3;
  2037. if (cursor==LANG_NUM && LANG_NUM>4) first = LANG_NUM-4;
  2038. if (cursor==LANG_NUM && LANG_NUM==4) first = LANG_NUM-4;
  2039. lcd.setCursor(0, 0);
  2040. lcd.print(" ");
  2041. lcd.setCursor(1, 0);
  2042. lcd_printPGM(MSG_LANGUAGE_NAME_EXPLICIT(first+0));
  2043. lcd.setCursor(0, 1);
  2044. lcd.print(" ");
  2045. lcd.setCursor(1, 1);
  2046. lcd_printPGM(MSG_LANGUAGE_NAME_EXPLICIT(first+1));
  2047. lcd.setCursor(0, 2);
  2048. lcd.print(" ");
  2049. if (LANG_NUM > 2){
  2050. lcd.setCursor(1, 2);
  2051. lcd_printPGM(MSG_LANGUAGE_NAME_EXPLICIT(first+2));
  2052. }
  2053. lcd.setCursor(0, 3);
  2054. lcd.print(" ");
  2055. if (LANG_NUM>3) {
  2056. lcd.setCursor(1, 3);
  2057. lcd_printPGM(MSG_LANGUAGE_NAME_EXPLICIT(first+3));
  2058. }
  2059. if (cursor==1) lcd.setCursor(0, 0);
  2060. if (cursor==2) lcd.setCursor(0, 1);
  2061. if (cursor>2) lcd.setCursor(0, 2);
  2062. if (cursor==LANG_NUM && LANG_NUM>3) lcd.setCursor(0, 3);
  2063. lcd.print(">");
  2064. if (cursor<LANG_NUM-1 && LANG_NUM>4) {
  2065. lcd.setCursor(19,3);
  2066. lcd.print("\x01");
  2067. }
  2068. if (cursor>3 && LANG_NUM>4) {
  2069. lcd.setCursor(19,0);
  2070. lcd.print("^");
  2071. }
  2072. }
  2073. void lcd_mylang_drawcursor(int cursor) {
  2074. if (cursor==1) lcd.setCursor(0, 1);
  2075. if (cursor>1 && cursor<LANG_NUM) lcd.setCursor(0, 2);
  2076. if (cursor==LANG_NUM) lcd.setCursor(0, 3);
  2077. lcd.print(">");
  2078. }
  2079. void lcd_mylang() {
  2080. int enc_dif = 0;
  2081. int cursor_pos = 1;
  2082. lang_selected=255;
  2083. int hlaska=1;
  2084. int counter=0;
  2085. lcd_set_custom_characters_arrows();
  2086. lcd_implementation_clear();
  2087. //lcd_mylang_top(hlaska);
  2088. lcd_mylang_drawmenu(cursor_pos);
  2089. enc_dif = encoderDiff;
  2090. while ( (lang_selected == 255) ) {
  2091. manage_heater();
  2092. manage_inactivity(true);
  2093. if ( abs((enc_dif - encoderDiff)) > 4 ) {
  2094. //if ( (abs(enc_dif - encoderDiff)) > 1 ) {
  2095. if (enc_dif > encoderDiff ) {
  2096. cursor_pos --;
  2097. }
  2098. if (enc_dif < encoderDiff ) {
  2099. cursor_pos ++;
  2100. }
  2101. if (cursor_pos > LANG_NUM) {
  2102. cursor_pos = LANG_NUM;
  2103. }
  2104. if (cursor_pos < 1) {
  2105. cursor_pos = 1;
  2106. }
  2107. lcd_mylang_drawmenu(cursor_pos);
  2108. enc_dif = encoderDiff;
  2109. delay(100);
  2110. //}
  2111. } else delay(20);
  2112. if (lcd_clicked()) {
  2113. lcd_set_lang(cursor_pos-1);
  2114. delay(500);
  2115. }
  2116. /*
  2117. if (++counter == 80) {
  2118. hlaska++;
  2119. if(hlaska>LANG_NUM) hlaska=1;
  2120. lcd_mylang_top(hlaska);
  2121. lcd_mylang_drawcursor(cursor_pos);
  2122. counter=0;
  2123. }
  2124. */
  2125. };
  2126. if(MYSERIAL.available() > 1){
  2127. lang_selected = 0;
  2128. firstrun = 0;
  2129. }
  2130. lcd_set_custom_characters_degree();
  2131. lcd_implementation_clear();
  2132. lcd_return_to_status();
  2133. }
  2134. char reset_menu() {
  2135. int enc_dif = 0;
  2136. char cursor_pos = 0;
  2137. lcd_implementation_clear();
  2138. lcd.setCursor(1, 0);
  2139. lcd_printPGM(PSTR("Language"));
  2140. lcd.setCursor(1, 1);
  2141. lcd_printPGM(PSTR("Statistics"));
  2142. lcd.setCursor(1, 2);
  2143. lcd_printPGM(PSTR("Shiping prep"));
  2144. lcd.setCursor(1, 3);
  2145. lcd_printPGM(PSTR("All data"));
  2146. lcd.setCursor(0, 0);
  2147. lcd.print(">");
  2148. enc_dif = encoderDiff;
  2149. while (1) {
  2150. manage_heater();
  2151. manage_inactivity(true);
  2152. if (abs((enc_dif - encoderDiff)) > 4) {
  2153. if ((abs(enc_dif - encoderDiff)) > 1) {
  2154. if (enc_dif > encoderDiff) {
  2155. cursor_pos--;
  2156. }
  2157. if (enc_dif < encoderDiff) {
  2158. cursor_pos++;
  2159. }
  2160. if (cursor_pos > 3) {
  2161. cursor_pos = 3;
  2162. }
  2163. if (cursor_pos < 0) {
  2164. cursor_pos = 0;
  2165. }
  2166. lcd.setCursor(0, 0);
  2167. lcd.print(" ");
  2168. lcd.setCursor(0, 1);
  2169. lcd.print(" ");
  2170. lcd.setCursor(0, 2);
  2171. lcd.print(" ");
  2172. lcd.setCursor(0, 3);
  2173. lcd.print(" ");
  2174. lcd.setCursor(0, cursor_pos);
  2175. lcd.print(">");
  2176. enc_dif = encoderDiff;
  2177. delay(100);
  2178. }
  2179. }
  2180. if (lcd_clicked()) {
  2181. while (lcd_clicked());
  2182. delay(10);
  2183. while (lcd_clicked());
  2184. return(cursor_pos);
  2185. }
  2186. }
  2187. }
  2188. #ifdef SNMM
  2189. static void extr_mov(float shift, float feed_rate) { //move extruder no matter what the current heater temperature is
  2190. set_extrude_min_temp(.0);
  2191. current_position[E_AXIS] += shift;
  2192. plan_buffer_line(current_position[X_AXIS], current_position[Y_AXIS], current_position[Z_AXIS], current_position[E_AXIS], feed_rate, active_extruder);
  2193. set_extrude_min_temp(EXTRUDE_MINTEMP);
  2194. }
  2195. void change_extr(int extr) { //switches multiplexer for extruders
  2196. st_synchronize();
  2197. delay(100);
  2198. disable_e0();
  2199. disable_e1();
  2200. disable_e2();
  2201. pinMode(E_MUX0_PIN, OUTPUT);
  2202. pinMode(E_MUX1_PIN, OUTPUT);
  2203. pinMode(E_MUX2_PIN, OUTPUT);
  2204. switch (extr) {
  2205. case 1:
  2206. WRITE(E_MUX0_PIN, HIGH);
  2207. WRITE(E_MUX1_PIN, LOW);
  2208. WRITE(E_MUX2_PIN, LOW);
  2209. break;
  2210. case 2:
  2211. WRITE(E_MUX0_PIN, LOW);
  2212. WRITE(E_MUX1_PIN, HIGH);
  2213. WRITE(E_MUX2_PIN, LOW);
  2214. break;
  2215. case 3:
  2216. WRITE(E_MUX0_PIN, HIGH);
  2217. WRITE(E_MUX1_PIN, HIGH);
  2218. WRITE(E_MUX2_PIN, LOW);
  2219. break;
  2220. default:
  2221. WRITE(E_MUX0_PIN, LOW);
  2222. WRITE(E_MUX1_PIN, LOW);
  2223. WRITE(E_MUX2_PIN, LOW);
  2224. break;
  2225. }
  2226. delay(100);
  2227. }
  2228. static int get_ext_nr() { //reads multiplexer input pins and return current extruder number (counted from 0)
  2229. return(4 * READ(E_MUX2_PIN) + 2 * READ(E_MUX1_PIN) + READ(E_MUX0_PIN));
  2230. }
  2231. static void extr_adj(int extruder) //loading filament for SNMM
  2232. {
  2233. bool correct;
  2234. max_feedrate[E_AXIS] =80;
  2235. //max_feedrate[E_AXIS] = 50;
  2236. START:
  2237. lcd_implementation_clear();
  2238. lcd.setCursor(0, 0);
  2239. switch (extruder) {
  2240. case 1: lcd_display_message_fullscreen_P(MSG_FILAMENT_LOADING_T1); break;
  2241. case 2: lcd_display_message_fullscreen_P(MSG_FILAMENT_LOADING_T2); break;
  2242. case 3: lcd_display_message_fullscreen_P(MSG_FILAMENT_LOADING_T3); break;
  2243. default: lcd_display_message_fullscreen_P(MSG_FILAMENT_LOADING_T0); break;
  2244. }
  2245. do{
  2246. extr_mov(0.001,1000);
  2247. delay_keep_alive(2);
  2248. } while (!lcd_clicked());
  2249. //delay_keep_alive(500);
  2250. st_synchronize();
  2251. //correct = lcd_show_fullscreen_message_yes_no_and_wait_P(MSG_FIL_LOADED_CHECK, false);
  2252. //if (!correct) goto START;
  2253. //extr_mov(BOWDEN_LENGTH/2.f, 500); //dividing by 2 is there because of max. extrusion length limitation (x_max + y_max)
  2254. //extr_mov(BOWDEN_LENGTH/2.f, 500);
  2255. extr_mov(BOWDEN_LENGTH, 500);
  2256. lcd_implementation_clear();
  2257. lcd.setCursor(0, 1); lcd_printPGM(MSG_PLEASE_WAIT);
  2258. st_synchronize();
  2259. max_feedrate[E_AXIS] = 50;
  2260. lcd_update_enable(true);
  2261. lcd_return_to_status();
  2262. lcdDrawUpdate = 2;
  2263. }
  2264. static void extr_unload() { //unloads filament
  2265. float tmp_motor[3] = DEFAULT_PWM_MOTOR_CURRENT;
  2266. float tmp_motor_loud[3] = DEFAULT_PWM_MOTOR_CURRENT_LOUD;
  2267. int8_t SilentMode;
  2268. if (degHotend0() > EXTRUDE_MINTEMP) {
  2269. lcd_implementation_clear();
  2270. lcd_display_message_fullscreen_P(PSTR(""));
  2271. max_feedrate[E_AXIS] = 50;
  2272. lcd.setCursor(0, 1); lcd_printPGM(MSG_PLEASE_WAIT);
  2273. current_position[Z_AXIS] += 15; //lifting in Z direction to make space for extrusion
  2274. plan_buffer_line(current_position[X_AXIS], current_position[Y_AXIS], current_position[Z_AXIS], current_position[E_AXIS], 25, active_extruder);
  2275. current_position[E_AXIS] += 10; //extrusion
  2276. plan_buffer_line(current_position[X_AXIS], current_position[Y_AXIS], current_position[Z_AXIS], current_position[E_AXIS], 10, active_extruder);
  2277. digipot_current(2, E_MOTOR_HIGH_CURRENT);
  2278. if (current_temperature[0] < 230) { //PLA & all other filaments
  2279. current_position[E_AXIS] += 5.4;
  2280. plan_buffer_line(current_position[X_AXIS], current_position[Y_AXIS], current_position[Z_AXIS], current_position[E_AXIS], 2800 / 60, active_extruder);
  2281. current_position[E_AXIS] += 3.2;
  2282. plan_buffer_line(current_position[X_AXIS], current_position[Y_AXIS], current_position[Z_AXIS], current_position[E_AXIS], 3000 / 60, active_extruder);
  2283. current_position[E_AXIS] += 3;
  2284. plan_buffer_line(current_position[X_AXIS], current_position[Y_AXIS], current_position[Z_AXIS], current_position[E_AXIS], 3400 / 60, active_extruder);
  2285. }
  2286. else { //ABS
  2287. current_position[E_AXIS] += 3.1;
  2288. plan_buffer_line(current_position[X_AXIS], current_position[Y_AXIS], current_position[Z_AXIS], current_position[E_AXIS], 2000 / 60, active_extruder);
  2289. current_position[E_AXIS] += 3.1;
  2290. plan_buffer_line(current_position[X_AXIS], current_position[Y_AXIS], current_position[Z_AXIS], current_position[E_AXIS], 2500 / 60, active_extruder);
  2291. current_position[E_AXIS] += 4;
  2292. plan_buffer_line(current_position[X_AXIS], current_position[Y_AXIS], current_position[Z_AXIS], current_position[E_AXIS], 3000 / 60, active_extruder);
  2293. /*current_position[X_AXIS] += 23; //delay
  2294. plan_buffer_line(current_position[X_AXIS], current_position[Y_AXIS], current_position[Z_AXIS], current_position[E_AXIS], 600 / 60, active_extruder); //delay
  2295. current_position[X_AXIS] -= 23; //delay
  2296. plan_buffer_line(current_position[X_AXIS], current_position[Y_AXIS], current_position[Z_AXIS], current_position[E_AXIS], 600 / 60, active_extruder); //delay*/
  2297. delay_keep_alive(4700);
  2298. }
  2299. max_feedrate[E_AXIS] = 80;
  2300. current_position[E_AXIS] -= (BOWDEN_LENGTH + 60 + FIL_LOAD_LENGTH) / 2;
  2301. plan_buffer_line(current_position[X_AXIS], current_position[Y_AXIS], current_position[Z_AXIS], current_position[E_AXIS], 500, active_extruder);
  2302. current_position[E_AXIS] -= (BOWDEN_LENGTH + 60 + FIL_LOAD_LENGTH) / 2;
  2303. plan_buffer_line(current_position[X_AXIS], current_position[Y_AXIS], current_position[Z_AXIS], current_position[E_AXIS], 500, active_extruder);
  2304. st_synchronize();
  2305. //digipot_init();
  2306. if (SilentMode == 1) digipot_current(2, tmp_motor[2]); //set back to normal operation currents
  2307. else digipot_current(2, tmp_motor_loud[2]);
  2308. lcd_update_enable(true);
  2309. lcd_return_to_status();
  2310. max_feedrate[E_AXIS] = 50;
  2311. }
  2312. else {
  2313. lcd_implementation_clear();
  2314. lcd.setCursor(0, 0);
  2315. lcd_printPGM(MSG_ERROR);
  2316. lcd.setCursor(0, 2);
  2317. lcd_printPGM(MSG_PREHEAT_NOZZLE);
  2318. delay(2000);
  2319. lcd_implementation_clear();
  2320. }
  2321. lcd_return_to_status();
  2322. }
  2323. //wrapper functions for loading filament
  2324. static void extr_adj_0(){
  2325. change_extr(0);
  2326. extr_adj(0);
  2327. }
  2328. static void extr_adj_1() {
  2329. change_extr(1);
  2330. extr_adj(1);
  2331. }
  2332. static void extr_adj_2() {
  2333. change_extr(2);
  2334. extr_adj(2);
  2335. }
  2336. static void extr_adj_3() {
  2337. change_extr(3);
  2338. extr_adj(3);
  2339. }
  2340. //wrapper functions for changing extruders
  2341. static void extr_change_0() {
  2342. change_extr(0);
  2343. lcd_return_to_status();
  2344. }
  2345. static void extr_change_1() {
  2346. change_extr(1);
  2347. lcd_return_to_status();
  2348. }
  2349. static void extr_change_2() {
  2350. change_extr(2);
  2351. lcd_return_to_status();
  2352. }
  2353. static void extr_change_3() {
  2354. change_extr(3);
  2355. lcd_return_to_status();
  2356. }
  2357. //wrapper functions for unloading filament
  2358. static void extr_unload_0() {
  2359. change_extr(0);
  2360. extr_unload();
  2361. }
  2362. static void extr_unload_1() {
  2363. change_extr(1);
  2364. extr_unload();
  2365. }
  2366. static void extr_unload_2() {
  2367. change_extr(2);
  2368. extr_unload();
  2369. }
  2370. static void extr_unload_3() {
  2371. change_extr(3);
  2372. extr_unload();
  2373. }
  2374. static void fil_load_menu()
  2375. {
  2376. START_MENU();
  2377. MENU_ITEM(back, MSG_MAIN, lcd_main_menu);
  2378. MENU_ITEM(function, PSTR("Load filament 1"), extr_adj_0);
  2379. MENU_ITEM(function, PSTR("Load filament 2 "), extr_adj_1);
  2380. MENU_ITEM(function, PSTR("Load filament 3"), extr_adj_2);
  2381. MENU_ITEM(function, PSTR("Load filament 4"), extr_adj_3);
  2382. END_MENU();
  2383. }
  2384. static void fil_unload_menu()
  2385. {
  2386. START_MENU();
  2387. MENU_ITEM(back, MSG_MAIN, lcd_main_menu);
  2388. MENU_ITEM(function, PSTR("Unload filament 1"), extr_unload_0);
  2389. MENU_ITEM(function, PSTR("Unload filament 2"), extr_unload_1);
  2390. MENU_ITEM(function, PSTR("Unload filament 3"), extr_unload_2);
  2391. MENU_ITEM(function, PSTR("Unload filament 4"), extr_unload_3);
  2392. END_MENU();
  2393. }
  2394. static void change_extr_menu(){
  2395. START_MENU();
  2396. MENU_ITEM(back, MSG_MAIN, lcd_main_menu);
  2397. MENU_ITEM(function, PSTR("Extruder 1"), extr_change_0);
  2398. MENU_ITEM(function, PSTR("Extruder 2"), extr_change_1);
  2399. MENU_ITEM(function, PSTR("Extruder 3"), extr_change_2);
  2400. MENU_ITEM(function, PSTR("Extruder 4"), extr_change_3);
  2401. END_MENU();
  2402. }
  2403. #endif
  2404. static void lcd_farm_no()
  2405. {
  2406. int enc_dif = 0;
  2407. int _farmno = farm_no;
  2408. int _ret = 0;
  2409. lcd_implementation_clear();
  2410. lcd.setCursor(0, 0);
  2411. lcd.print("Farm no");
  2412. do
  2413. {
  2414. if (abs((enc_dif - encoderDiff)) > 2) {
  2415. if (enc_dif > encoderDiff) {
  2416. _farmno--;
  2417. }
  2418. if (enc_dif < encoderDiff) {
  2419. _farmno++;
  2420. }
  2421. enc_dif = 0;
  2422. encoderDiff = 0;
  2423. }
  2424. if (_farmno > 254) { _farmno = 1; }
  2425. if (_farmno < 1) { _farmno = 254; }
  2426. lcd.setCursor(0, 2);
  2427. lcd.print(_farmno);
  2428. lcd.print(" ");
  2429. delay(100);
  2430. if (lcd_clicked())
  2431. {
  2432. _ret = 1;
  2433. farm_no = _farmno;
  2434. EEPROM_save_B(EEPROM_FARM_MODE, &farm_no);
  2435. prusa_statistics(20);
  2436. lcd_return_to_status();
  2437. }
  2438. manage_heater();
  2439. } while (_ret == 0);
  2440. }
  2441. void lcd_confirm_print()
  2442. {
  2443. int enc_dif = 0;
  2444. int cursor_pos = 1;
  2445. int _ret = 0;
  2446. int _t = 0;
  2447. lcd_implementation_clear();
  2448. lcd.setCursor(0, 0);
  2449. lcd.print("Print ok ?");
  2450. do
  2451. {
  2452. if (abs((enc_dif - encoderDiff)) > 2) {
  2453. if (enc_dif > encoderDiff) {
  2454. cursor_pos--;
  2455. }
  2456. if (enc_dif < encoderDiff) {
  2457. cursor_pos++;
  2458. }
  2459. }
  2460. if (cursor_pos > 2) { cursor_pos = 2; }
  2461. if (cursor_pos < 1) { cursor_pos = 1; }
  2462. lcd.setCursor(0, 2); lcd.print(" ");
  2463. lcd.setCursor(0, 3); lcd.print(" ");
  2464. lcd.setCursor(2, 2);
  2465. lcd_printPGM(MSG_YES);
  2466. lcd.setCursor(2, 3);
  2467. lcd_printPGM(MSG_NO);
  2468. lcd.setCursor(0, 1 + cursor_pos);
  2469. lcd.print(">");
  2470. delay(100);
  2471. _t = _t + 1;
  2472. if (_t>100)
  2473. {
  2474. prusa_statistics(99);
  2475. _t = 0;
  2476. }
  2477. if (lcd_clicked())
  2478. {
  2479. if (cursor_pos == 1)
  2480. {
  2481. _ret = 1;
  2482. prusa_statistics(20);
  2483. prusa_statistics(4);
  2484. }
  2485. if (cursor_pos == 2)
  2486. {
  2487. _ret = 2;
  2488. prusa_statistics(20);
  2489. prusa_statistics(5);
  2490. }
  2491. }
  2492. manage_heater();
  2493. manage_inactivity();
  2494. } while (_ret == 0);
  2495. }
  2496. static void lcd_main_menu()
  2497. {
  2498. SDscrool = 0;
  2499. START_MENU();
  2500. // Majkl superawesome menu
  2501. MENU_ITEM(back, MSG_WATCH, lcd_status_screen);
  2502. /* if (farm_mode && !IS_SD_PRINTING )
  2503. {
  2504. int tempScrool = 0;
  2505. if (lcdDrawUpdate == 0 && LCD_CLICKED == 0)
  2506. //delay(100);
  2507. return; // nothing to do (so don't thrash the SD card)
  2508. uint16_t fileCnt = card.getnrfilenames();
  2509. card.getWorkDirName();
  2510. if (card.filename[0] == '/')
  2511. {
  2512. #if SDCARDDETECT == -1
  2513. MENU_ITEM(function, MSG_REFRESH, lcd_sd_refresh);
  2514. #endif
  2515. } else {
  2516. MENU_ITEM(function, PSTR(LCD_STR_FOLDER ".."), lcd_sd_updir);
  2517. }
  2518. for (uint16_t i = 0; i < fileCnt; i++)
  2519. {
  2520. if (_menuItemNr == _lineNr)
  2521. {
  2522. #ifndef SDCARD_RATHERRECENTFIRST
  2523. card.getfilename(i);
  2524. #else
  2525. card.getfilename(fileCnt - 1 - i);
  2526. #endif
  2527. if (card.filenameIsDir)
  2528. {
  2529. MENU_ITEM(sddirectory, MSG_CARD_MENU, card.filename, card.longFilename);
  2530. } else {
  2531. MENU_ITEM(sdfile, MSG_CARD_MENU, card.filename, card.longFilename);
  2532. }
  2533. } else {
  2534. MENU_ITEM_DUMMY();
  2535. }
  2536. }
  2537. MENU_ITEM(back, PSTR("- - - - - - - - -"), lcd_status_screen);
  2538. }*/
  2539. if ( ( IS_SD_PRINTING || is_usb_printing ) && (current_position[Z_AXIS] < Z_HEIGHT_HIDE_LIVE_ADJUST_MENU) && !homing_flag)
  2540. {
  2541. MENU_ITEM(submenu, MSG_BABYSTEP_Z, lcd_babystep_z);//8
  2542. }
  2543. if ( moves_planned() || IS_SD_PRINTING || is_usb_printing )
  2544. {
  2545. MENU_ITEM(submenu, MSG_TUNE, lcd_tune_menu);
  2546. } else
  2547. {
  2548. MENU_ITEM(submenu, MSG_PREHEAT, lcd_preheat_menu);
  2549. }
  2550. #ifdef SDSUPPORT
  2551. if (card.cardOK)
  2552. {
  2553. if (card.isFileOpen())
  2554. {
  2555. if (card.sdprinting)
  2556. {
  2557. MENU_ITEM(function, MSG_PAUSE_PRINT, lcd_sdcard_pause);
  2558. }
  2559. else
  2560. {
  2561. MENU_ITEM(function, MSG_RESUME_PRINT, lcd_sdcard_resume);
  2562. }
  2563. MENU_ITEM(submenu, MSG_STOP_PRINT, lcd_sdcard_stop);
  2564. }
  2565. else
  2566. {
  2567. if (!is_usb_printing)
  2568. {
  2569. //if (farm_mode) MENU_ITEM(submenu, MSG_FARM_CARD_MENU, lcd_farm_sdcard_menu);
  2570. /*else*/ MENU_ITEM(submenu, MSG_CARD_MENU, lcd_sdcard_menu);
  2571. }
  2572. #if SDCARDDETECT < 1
  2573. MENU_ITEM(gcode, MSG_CNG_SDCARD, PSTR("M21")); // SD-card changed by user
  2574. #endif
  2575. }
  2576. } else
  2577. {
  2578. MENU_ITEM(submenu, MSG_NO_CARD, lcd_sdcard_menu);
  2579. #if SDCARDDETECT < 1
  2580. MENU_ITEM(gcode, MSG_INIT_SDCARD, PSTR("M21")); // Manually initialize the SD-card via user interface
  2581. #endif
  2582. }
  2583. #endif
  2584. if (IS_SD_PRINTING || is_usb_printing)
  2585. {
  2586. if (farm_mode)
  2587. {
  2588. MENU_ITEM(submenu, PSTR("Farm number"), lcd_farm_no);
  2589. }
  2590. }
  2591. else
  2592. {
  2593. #ifndef SNMM
  2594. MENU_ITEM(function, MSG_LOAD_FILAMENT, lcd_LoadFilament);
  2595. MENU_ITEM(function, MSG_UNLOAD_FILAMENT, lcd_unLoadFilament);
  2596. #endif
  2597. #ifdef SNMM
  2598. MENU_ITEM(submenu, MSG_LOAD_FILAMENT, fil_load_menu);
  2599. MENU_ITEM(submenu, MSG_UNLOAD_FILAMENT, fil_unload_menu);
  2600. MENU_ITEM(submenu, MSG_CHANGE_EXTR, change_extr_menu);
  2601. #endif
  2602. MENU_ITEM(submenu, MSG_SETTINGS, lcd_settings_menu);
  2603. if(!isPrintPaused) MENU_ITEM(submenu, MSG_MENU_CALIBRATION, lcd_calibration_menu);
  2604. }
  2605. if (!is_usb_printing)
  2606. {
  2607. MENU_ITEM(submenu, MSG_STATISTICS, lcd_menu_statistics);
  2608. }
  2609. MENU_ITEM(submenu, MSG_SUPPORT, lcd_support_menu);
  2610. END_MENU();
  2611. }
  2612. void stack_error() {
  2613. SET_OUTPUT(BEEPER);
  2614. WRITE(BEEPER, HIGH);
  2615. delay(1000);
  2616. WRITE(BEEPER, LOW);
  2617. lcd_display_message_fullscreen_P(MSG_STACK_ERROR);
  2618. //err_triggered = 1;
  2619. while (1) delay_keep_alive(1000);
  2620. }
  2621. #ifdef SDSUPPORT
  2622. static void lcd_autostart_sd()
  2623. {
  2624. card.lastnr = 0;
  2625. card.setroot();
  2626. card.checkautostart(true);
  2627. }
  2628. #endif
  2629. static void lcd_silent_mode_set_tune() {
  2630. SilentModeMenu = !SilentModeMenu;
  2631. eeprom_update_byte((unsigned char*)EEPROM_SILENT, SilentModeMenu);
  2632. digipot_init();
  2633. lcd_goto_menu(lcd_tune_menu, 9);
  2634. }
  2635. static void lcd_tune_menu()
  2636. {
  2637. EEPROM_read(EEPROM_SILENT, (uint8_t*)&SilentModeMenu, sizeof(SilentModeMenu));
  2638. START_MENU();
  2639. MENU_ITEM(back, MSG_MAIN, lcd_main_menu); //1
  2640. MENU_ITEM_EDIT(int3, MSG_SPEED, &feedmultiply, 10, 999);//2
  2641. MENU_ITEM_EDIT(int3, MSG_NOZZLE, &target_temperature[0], 0, HEATER_0_MAXTEMP - 10);//3
  2642. MENU_ITEM_EDIT(int3, MSG_BED, &target_temperature_bed, 0, BED_MAXTEMP - 10);//4
  2643. MENU_ITEM_EDIT(int3, MSG_FAN_SPEED, &fanSpeed, 0, 255);//5
  2644. MENU_ITEM_EDIT(int3, MSG_FLOW, &extrudemultiply, 10, 999);//6
  2645. #ifdef FILAMENTCHANGEENABLE
  2646. MENU_ITEM(gcode, MSG_FILAMENTCHANGE, PSTR("M600"));//7
  2647. #endif
  2648. if (SilentModeMenu == 0) {
  2649. MENU_ITEM(function, MSG_SILENT_MODE_OFF, lcd_silent_mode_set_tune);
  2650. } else {
  2651. MENU_ITEM(function, MSG_SILENT_MODE_ON, lcd_silent_mode_set_tune);
  2652. }
  2653. END_MENU();
  2654. }
  2655. static void lcd_move_menu_01mm()
  2656. {
  2657. move_menu_scale = 0.1;
  2658. lcd_move_menu_axis();
  2659. }
  2660. static void lcd_control_temperature_menu()
  2661. {
  2662. #ifdef PIDTEMP
  2663. // set up temp variables - undo the default scaling
  2664. // raw_Ki = unscalePID_i(Ki);
  2665. // raw_Kd = unscalePID_d(Kd);
  2666. #endif
  2667. START_MENU();
  2668. MENU_ITEM(back, MSG_SETTINGS, lcd_settings_menu);
  2669. #if TEMP_SENSOR_0 != 0
  2670. MENU_ITEM_EDIT(int3, MSG_NOZZLE, &target_temperature[0], 0, HEATER_0_MAXTEMP - 10);
  2671. #endif
  2672. #if TEMP_SENSOR_1 != 0
  2673. MENU_ITEM_EDIT(int3, MSG_NOZZLE1, &target_temperature[1], 0, HEATER_1_MAXTEMP - 10);
  2674. #endif
  2675. #if TEMP_SENSOR_2 != 0
  2676. MENU_ITEM_EDIT(int3, MSG_NOZZLE2, &target_temperature[2], 0, HEATER_2_MAXTEMP - 10);
  2677. #endif
  2678. #if TEMP_SENSOR_BED != 0
  2679. MENU_ITEM_EDIT(int3, MSG_BED, &target_temperature_bed, 0, BED_MAXTEMP - 3);
  2680. #endif
  2681. MENU_ITEM_EDIT(int3, MSG_FAN_SPEED, &fanSpeed, 0, 255);
  2682. #if defined AUTOTEMP && (TEMP_SENSOR_0 != 0)
  2683. MENU_ITEM_EDIT(bool, MSG_AUTOTEMP, &autotemp_enabled);
  2684. MENU_ITEM_EDIT(float3, MSG_MIN, &autotemp_min, 0, HEATER_0_MAXTEMP - 10);
  2685. MENU_ITEM_EDIT(float3, MSG_MAX, &autotemp_max, 0, HEATER_0_MAXTEMP - 10);
  2686. MENU_ITEM_EDIT(float32, MSG_FACTOR, &autotemp_factor, 0.0, 1.0);
  2687. #endif
  2688. END_MENU();
  2689. }
  2690. #if SDCARDDETECT == -1
  2691. static void lcd_sd_refresh()
  2692. {
  2693. card.initsd();
  2694. currentMenuViewOffset = 0;
  2695. }
  2696. #endif
  2697. static void lcd_sd_updir()
  2698. {
  2699. SDscrool = 0;
  2700. card.updir();
  2701. currentMenuViewOffset = 0;
  2702. }
  2703. void lcd_sdcard_stop()
  2704. {
  2705. lcd.setCursor(0, 0);
  2706. lcd_printPGM(MSG_STOP_PRINT);
  2707. lcd.setCursor(2, 2);
  2708. lcd_printPGM(MSG_NO);
  2709. lcd.setCursor(2, 3);
  2710. lcd_printPGM(MSG_YES);
  2711. lcd.setCursor(0, 2); lcd.print(" ");
  2712. lcd.setCursor(0, 3); lcd.print(" ");
  2713. if ((int32_t)encoderPosition > 2) { encoderPosition = 2; }
  2714. if ((int32_t)encoderPosition < 1) { encoderPosition = 1; }
  2715. lcd.setCursor(0, 1 + encoderPosition);
  2716. lcd.print(">");
  2717. if (lcd_clicked())
  2718. {
  2719. if ((int32_t)encoderPosition == 1)
  2720. {
  2721. lcd_return_to_status();
  2722. }
  2723. if ((int32_t)encoderPosition == 2)
  2724. {
  2725. cancel_heatup = true;
  2726. #ifdef MESH_BED_LEVELING
  2727. mbl.active = false;
  2728. #endif
  2729. // Stop the stoppers, update the position from the stoppers.
  2730. planner_abort_hard();
  2731. // Because the planner_abort_hard() initialized current_position[Z] from the stepper,
  2732. // Z baystep is no more applied. Reset it.
  2733. babystep_reset();
  2734. // Clean the input command queue.
  2735. cmdqueue_reset();
  2736. lcd_setstatuspgm(MSG_PRINT_ABORTED);
  2737. card.sdprinting = false;
  2738. card.closefile();
  2739. stoptime = millis();
  2740. unsigned long t = (stoptime - starttime) / 1000; //time in s
  2741. save_statistics(total_filament_used, t);
  2742. lcd_return_to_status();
  2743. lcd_ignore_click(true);
  2744. lcd_commands_type = LCD_COMMAND_STOP_PRINT;
  2745. // Turn off the print fan
  2746. SET_OUTPUT(FAN_PIN);
  2747. WRITE(FAN_PIN, 0);
  2748. fanSpeed=0;
  2749. }
  2750. }
  2751. }
  2752. /*
  2753. void getFileDescription(char *name, char *description) {
  2754. // get file description, ie the REAL filenam, ie the second line
  2755. card.openFile(name, true);
  2756. int i = 0;
  2757. // skip the first line (which is the version line)
  2758. while (true) {
  2759. uint16_t readByte = card.get();
  2760. if (readByte == '\n') {
  2761. break;
  2762. }
  2763. }
  2764. // read the second line (which is the description line)
  2765. while (true) {
  2766. uint16_t readByte = card.get();
  2767. if (i == 0) {
  2768. // skip the first '^'
  2769. readByte = card.get();
  2770. }
  2771. description[i] = readByte;
  2772. i++;
  2773. if (readByte == '\n') {
  2774. break;
  2775. }
  2776. }
  2777. card.closefile();
  2778. description[i-1] = 0;
  2779. }
  2780. */
  2781. void lcd_sdcard_menu()
  2782. {
  2783. int tempScrool = 0;
  2784. if (lcdDrawUpdate == 0 && LCD_CLICKED == 0)
  2785. //delay(100);
  2786. return; // nothing to do (so don't thrash the SD card)
  2787. uint16_t fileCnt = card.getnrfilenames();
  2788. START_MENU();
  2789. MENU_ITEM(back, MSG_MAIN, lcd_main_menu);
  2790. card.getWorkDirName();
  2791. if (card.filename[0] == '/')
  2792. {
  2793. #if SDCARDDETECT == -1
  2794. MENU_ITEM(function, MSG_REFRESH, lcd_sd_refresh);
  2795. #endif
  2796. } else {
  2797. MENU_ITEM(function, PSTR(LCD_STR_FOLDER ".."), lcd_sd_updir);
  2798. }
  2799. for (uint16_t i = 0; i < fileCnt; i++)
  2800. {
  2801. if (_menuItemNr == _lineNr)
  2802. {
  2803. #ifndef SDCARD_RATHERRECENTFIRST
  2804. card.getfilename(i);
  2805. #else
  2806. card.getfilename(fileCnt - 1 - i);
  2807. #endif
  2808. if (card.filenameIsDir)
  2809. {
  2810. MENU_ITEM(sddirectory, MSG_CARD_MENU, card.filename, card.longFilename);
  2811. } else {
  2812. MENU_ITEM(sdfile, MSG_CARD_MENU, card.filename, card.longFilename);
  2813. }
  2814. } else {
  2815. MENU_ITEM_DUMMY();
  2816. }
  2817. }
  2818. END_MENU();
  2819. }
  2820. //char description [10] [31];
  2821. /*void get_description() {
  2822. uint16_t fileCnt = card.getnrfilenames();
  2823. for (uint16_t i = 0; i < fileCnt; i++)
  2824. {
  2825. card.getfilename(fileCnt - 1 - i);
  2826. getFileDescription(card.filename, description[i]);
  2827. }
  2828. }*/
  2829. /*void lcd_farm_sdcard_menu()
  2830. {
  2831. static int i = 0;
  2832. if (i == 0) {
  2833. get_description();
  2834. i++;
  2835. }
  2836. //int j;
  2837. //char description[31];
  2838. int tempScrool = 0;
  2839. if (lcdDrawUpdate == 0 && LCD_CLICKED == 0)
  2840. //delay(100);
  2841. return; // nothing to do (so don't thrash the SD card)
  2842. uint16_t fileCnt = card.getnrfilenames();
  2843. START_MENU();
  2844. MENU_ITEM(back, MSG_MAIN, lcd_main_menu);
  2845. card.getWorkDirName();
  2846. if (card.filename[0] == '/')
  2847. {
  2848. #if SDCARDDETECT == -1
  2849. MENU_ITEM(function, MSG_REFRESH, lcd_sd_refresh);
  2850. #endif
  2851. }
  2852. else {
  2853. MENU_ITEM(function, PSTR(LCD_STR_FOLDER ".."), lcd_sd_updir);
  2854. }
  2855. for (uint16_t i = 0; i < fileCnt; i++)
  2856. {
  2857. if (_menuItemNr == _lineNr)
  2858. {
  2859. #ifndef SDCARD_RATHERRECENTFIRST
  2860. card.getfilename(i);
  2861. #else
  2862. card.getfilename(fileCnt - 1 - i);
  2863. #endif
  2864. if (card.filenameIsDir)
  2865. {
  2866. MENU_ITEM(sddirectory, MSG_CARD_MENU, card.filename, card.longFilename);
  2867. }
  2868. else {
  2869. MENU_ITEM(sdfile, MSG_CARD_MENU, card.filename, description[i]);
  2870. }
  2871. }
  2872. else {
  2873. MENU_ITEM_DUMMY();
  2874. }
  2875. }
  2876. END_MENU();
  2877. }*/
  2878. #define menu_edit_type(_type, _name, _strFunc, scale) \
  2879. void menu_edit_ ## _name () \
  2880. { \
  2881. if ((int32_t)encoderPosition < 0) encoderPosition = 0; \
  2882. if ((int32_t)encoderPosition > menuData.editMenuParentState.maxEditValue) encoderPosition = menuData.editMenuParentState.maxEditValue; \
  2883. if (lcdDrawUpdate) \
  2884. lcd_implementation_drawedit(menuData.editMenuParentState.editLabel, _strFunc(((_type)((int32_t)encoderPosition + menuData.editMenuParentState.minEditValue)) / scale)); \
  2885. if (LCD_CLICKED) \
  2886. { \
  2887. *((_type*)menuData.editMenuParentState.editValue) = ((_type)((int32_t)encoderPosition + menuData.editMenuParentState.minEditValue)) / scale; \
  2888. lcd_goto_menu(menuData.editMenuParentState.prevMenu, menuData.editMenuParentState.prevEncoderPosition, true, false); \
  2889. } \
  2890. } \
  2891. static void menu_action_setting_edit_ ## _name (const char* pstr, _type* ptr, _type minValue, _type maxValue) \
  2892. { \
  2893. menuData.editMenuParentState.prevMenu = currentMenu; \
  2894. menuData.editMenuParentState.prevEncoderPosition = encoderPosition; \
  2895. \
  2896. lcdDrawUpdate = 2; \
  2897. menuData.editMenuParentState.editLabel = pstr; \
  2898. menuData.editMenuParentState.editValue = ptr; \
  2899. menuData.editMenuParentState.minEditValue = minValue * scale; \
  2900. menuData.editMenuParentState.maxEditValue = maxValue * scale - menuData.editMenuParentState.minEditValue; \
  2901. lcd_goto_menu(menu_edit_ ## _name, (*ptr) * scale - menuData.editMenuParentState.minEditValue, true, false); \
  2902. \
  2903. }\
  2904. /*
  2905. void menu_edit_callback_ ## _name () { \
  2906. menu_edit_ ## _name (); \
  2907. if (LCD_CLICKED) (*callbackFunc)(); \
  2908. } \
  2909. static void menu_action_setting_edit_callback_ ## _name (const char* pstr, _type* ptr, _type minValue, _type maxValue, menuFunc_t callback) \
  2910. { \
  2911. menuData.editMenuParentState.prevMenu = currentMenu; \
  2912. menuData.editMenuParentState.prevEncoderPosition = encoderPosition; \
  2913. \
  2914. lcdDrawUpdate = 2; \
  2915. lcd_goto_menu(menu_edit_callback_ ## _name, (*ptr) * scale - menuData.editMenuParentState.minEditValue, true, false); \
  2916. \
  2917. menuData.editMenuParentState.editLabel = pstr; \
  2918. menuData.editMenuParentState.editValue = ptr; \
  2919. menuData.editMenuParentState.minEditValue = minValue * scale; \
  2920. menuData.editMenuParentState.maxEditValue = maxValue * scale - menuData.editMenuParentState.minEditValue; \
  2921. callbackFunc = callback;\
  2922. }
  2923. */
  2924. menu_edit_type(int, int3, itostr3, 1)
  2925. menu_edit_type(float, float3, ftostr3, 1)
  2926. menu_edit_type(float, float32, ftostr32, 100)
  2927. menu_edit_type(float, float43, ftostr43, 1000)
  2928. menu_edit_type(float, float5, ftostr5, 0.01)
  2929. menu_edit_type(float, float51, ftostr51, 10)
  2930. menu_edit_type(float, float52, ftostr52, 100)
  2931. menu_edit_type(unsigned long, long5, ftostr5, 0.01)
  2932. static void lcd_selftest()
  2933. {
  2934. int _progress = 0;
  2935. bool _result = false;
  2936. lcd_implementation_clear();
  2937. lcd.setCursor(0, 0); lcd_printPGM(MSG_SELFTEST_START);
  2938. delay(2000);
  2939. _result = lcd_selftest_fan_dialog(1);
  2940. if (_result)
  2941. {
  2942. _result = lcd_selftest_fan_dialog(2);
  2943. }
  2944. if (_result)
  2945. {
  2946. _progress = lcd_selftest_screen(0, _progress, 3, true, 2000);
  2947. _result = lcd_selfcheck_endstops();
  2948. }
  2949. if (_result)
  2950. {
  2951. _progress = lcd_selftest_screen(1, _progress, 3, true, 1000);
  2952. _result = lcd_selfcheck_check_heater(false);
  2953. }
  2954. if (_result)
  2955. {
  2956. current_position[Z_AXIS] += 15; //move Z axis higher to avoid false triggering of Z end stop in case that we are very low - just above heatbed
  2957. _progress = lcd_selftest_screen(2, _progress, 3, true, 2000);
  2958. _result = lcd_selfcheck_axis(X_AXIS, X_MAX_POS);
  2959. }
  2960. if (_result)
  2961. {
  2962. _progress = lcd_selftest_screen(2, _progress, 3, true, 0);
  2963. _result = lcd_selfcheck_pulleys(X_AXIS);
  2964. }
  2965. if (_result)
  2966. {
  2967. _progress = lcd_selftest_screen(3, _progress, 3, true, 1500);
  2968. _result = lcd_selfcheck_axis(Y_AXIS, Y_MAX_POS);
  2969. }
  2970. if (_result)
  2971. {
  2972. _progress = lcd_selftest_screen(3, _progress, 3, true, 0);
  2973. _result = lcd_selfcheck_pulleys(Y_AXIS);
  2974. }
  2975. if (_result)
  2976. {
  2977. current_position[X_AXIS] = current_position[X_AXIS] - 3;
  2978. current_position[Y_AXIS] = current_position[Y_AXIS] - 14;
  2979. _progress = lcd_selftest_screen(4, _progress, 3, true, 1500);
  2980. _result = lcd_selfcheck_axis(2, Z_MAX_POS);
  2981. enquecommand_P(PSTR("G28 W"));
  2982. }
  2983. if (_result)
  2984. {
  2985. _progress = lcd_selftest_screen(5, _progress, 3, true, 2000);
  2986. _result = lcd_selfcheck_check_heater(true);
  2987. }
  2988. if (_result)
  2989. {
  2990. _progress = lcd_selftest_screen(6, _progress, 3, true, 5000);
  2991. }
  2992. else
  2993. {
  2994. _progress = lcd_selftest_screen(7, _progress, 3, true, 5000);
  2995. }
  2996. lcd_reset_alert_level();
  2997. enquecommand_P(PSTR("M84"));
  2998. lcd_implementation_clear();
  2999. lcd_next_update_millis = millis() + LCD_UPDATE_INTERVAL;
  3000. if (_result)
  3001. {
  3002. LCD_ALERTMESSAGERPGM(MSG_SELFTEST_OK);
  3003. }
  3004. else
  3005. {
  3006. LCD_ALERTMESSAGERPGM(MSG_SELFTEST_FAILED);
  3007. }
  3008. }
  3009. static bool lcd_selfcheck_axis(int _axis, int _travel)
  3010. {
  3011. bool _stepdone = false;
  3012. bool _stepresult = false;
  3013. int _progress = 0;
  3014. int _travel_done = 0;
  3015. int _err_endstop = 0;
  3016. int _lcd_refresh = 0;
  3017. _travel = _travel + (_travel / 10);
  3018. do {
  3019. current_position[_axis] = current_position[_axis] - 1;
  3020. plan_buffer_line(current_position[X_AXIS], current_position[Y_AXIS], current_position[Z_AXIS], current_position[3], manual_feedrate[0] / 60, active_extruder);
  3021. st_synchronize();
  3022. if (READ(X_MIN_PIN) ^ X_MIN_ENDSTOP_INVERTING == 1 || READ(Y_MIN_PIN) ^ Y_MIN_ENDSTOP_INVERTING == 1 || READ(Z_MIN_PIN) ^ Z_MIN_ENDSTOP_INVERTING == 1)
  3023. {
  3024. if (_axis == 0)
  3025. {
  3026. _stepresult = (READ(X_MIN_PIN) ^ X_MIN_ENDSTOP_INVERTING == 1) ? true : false;
  3027. _err_endstop = (READ(Y_MIN_PIN) ^ Y_MIN_ENDSTOP_INVERTING == 1) ? 1 : 2;
  3028. }
  3029. if (_axis == 1)
  3030. {
  3031. _stepresult = (READ(Y_MIN_PIN) ^ Y_MIN_ENDSTOP_INVERTING == 1) ? true : false;
  3032. _err_endstop = (READ(X_MIN_PIN) ^ X_MIN_ENDSTOP_INVERTING == 1) ? 0 : 2;
  3033. }
  3034. if (_axis == 2)
  3035. {
  3036. _stepresult = (READ(Z_MIN_PIN) ^ Z_MIN_ENDSTOP_INVERTING == 1) ? true : false;
  3037. _err_endstop = (READ(X_MIN_PIN) ^ X_MIN_ENDSTOP_INVERTING == 1) ? 0 : 1;
  3038. /*disable_x();
  3039. disable_y();
  3040. disable_z();*/
  3041. }
  3042. _stepdone = true;
  3043. }
  3044. if (_lcd_refresh < 6)
  3045. {
  3046. _lcd_refresh++;
  3047. }
  3048. else
  3049. {
  3050. _progress = lcd_selftest_screen(2 + _axis, _progress, 3, false, 0);
  3051. _lcd_refresh = 0;
  3052. }
  3053. manage_heater();
  3054. manage_inactivity(true);
  3055. //delay(100);
  3056. (_travel_done <= _travel) ? _travel_done++ : _stepdone = true;
  3057. } while (!_stepdone);
  3058. //current_position[_axis] = current_position[_axis] + 15;
  3059. //plan_buffer_line(current_position[X_AXIS], current_position[Y_AXIS], current_position[Z_AXIS], current_position[3], manual_feedrate[0] / 60, active_extruder);
  3060. if (!_stepresult)
  3061. {
  3062. const char *_error_1;
  3063. const char *_error_2;
  3064. if (_axis == X_AXIS) _error_1 = "X";
  3065. if (_axis == Y_AXIS) _error_1 = "Y";
  3066. if (_axis == Z_AXIS) _error_1 = "Z";
  3067. if (_err_endstop == 0) _error_2 = "X";
  3068. if (_err_endstop == 1) _error_2 = "Y";
  3069. if (_err_endstop == 2) _error_2 = "Z";
  3070. if (_travel_done >= _travel)
  3071. {
  3072. lcd_selftest_error(5, _error_1, _error_2);
  3073. }
  3074. else
  3075. {
  3076. lcd_selftest_error(4, _error_1, _error_2);
  3077. }
  3078. }
  3079. return _stepresult;
  3080. }
  3081. static bool lcd_selfcheck_pulleys(int axis)
  3082. {
  3083. float tmp_motor_loud[3] = DEFAULT_PWM_MOTOR_CURRENT_LOUD;
  3084. float tmp_motor[3] = DEFAULT_PWM_MOTOR_CURRENT;
  3085. float current_position_init;
  3086. float move;
  3087. bool endstop_triggered = false;
  3088. bool result = true;
  3089. int i;
  3090. unsigned long timeout_counter;
  3091. refresh_cmd_timeout();
  3092. manage_inactivity(true);
  3093. if (axis == 0) move = 50; //X_AXIS
  3094. else move = 50; //Y_AXIS
  3095. current_position_init = current_position[axis];
  3096. current_position[axis] += 2;
  3097. plan_buffer_line(current_position[X_AXIS], current_position[Y_AXIS], current_position[Z_AXIS], current_position[3], manual_feedrate[0] / 60, active_extruder);
  3098. for (i = 0; i < 5; i++) {
  3099. refresh_cmd_timeout();
  3100. current_position[axis] = current_position[axis] + move;
  3101. digipot_current(0, 850); //set motor current higher
  3102. plan_buffer_line(current_position[X_AXIS], current_position[Y_AXIS], current_position[Z_AXIS], current_position[3], 200, active_extruder);
  3103. st_synchronize();
  3104. if (SilentModeMenu == 1) digipot_current(0, tmp_motor[0]); //set back to normal operation currents
  3105. else digipot_current(0, tmp_motor_loud[0]); //set motor current back
  3106. current_position[axis] = current_position[axis] - move;
  3107. plan_buffer_line(current_position[X_AXIS], current_position[Y_AXIS], current_position[Z_AXIS], current_position[3], 50, active_extruder);
  3108. st_synchronize();
  3109. if ((READ(X_MIN_PIN) ^ X_MIN_ENDSTOP_INVERTING == 1) || (READ(Y_MIN_PIN) ^ Y_MIN_ENDSTOP_INVERTING == 1)) {
  3110. lcd_selftest_error(8, (axis == 0) ? "X" : "Y", "");
  3111. return(false);
  3112. }
  3113. }
  3114. timeout_counter = millis() + 2500;
  3115. endstop_triggered = false;
  3116. manage_inactivity(true);
  3117. while (!endstop_triggered) {
  3118. if ((READ(X_MIN_PIN) ^ X_MIN_ENDSTOP_INVERTING == 1) || (READ(Y_MIN_PIN) ^ Y_MIN_ENDSTOP_INVERTING == 1)) {
  3119. endstop_triggered = true;
  3120. if (current_position_init - 1 <= current_position[axis] && current_position_init + 1 >= current_position[axis]) {
  3121. current_position[axis] += 15;
  3122. plan_buffer_line(current_position[X_AXIS], current_position[Y_AXIS], current_position[Z_AXIS], current_position[3], manual_feedrate[0] / 60, active_extruder);
  3123. st_synchronize();
  3124. return(true);
  3125. }
  3126. else {
  3127. lcd_selftest_error(8, (axis == 0) ? "X" : "Y", "");
  3128. return(false);
  3129. }
  3130. }
  3131. else {
  3132. current_position[axis] -= 1;
  3133. plan_buffer_line(current_position[X_AXIS], current_position[Y_AXIS], current_position[Z_AXIS], current_position[3], manual_feedrate[0] / 60, active_extruder);
  3134. st_synchronize();
  3135. if (millis() > timeout_counter) {
  3136. lcd_selftest_error(8, (axis == 0) ? "X" : "Y", "");
  3137. return(false);
  3138. }
  3139. }
  3140. }
  3141. }
  3142. static bool lcd_selfcheck_endstops()
  3143. {
  3144. bool _result = true;
  3145. if (READ(X_MIN_PIN) ^ X_MIN_ENDSTOP_INVERTING == 1 || READ(Y_MIN_PIN) ^ Y_MIN_ENDSTOP_INVERTING == 1 || READ(Z_MIN_PIN) ^ Z_MIN_ENDSTOP_INVERTING == 1)
  3146. {
  3147. current_position[0] = (READ(X_MIN_PIN) ^ X_MIN_ENDSTOP_INVERTING == 1) ? current_position[0] = current_position[0] + 10 : current_position[0];
  3148. current_position[1] = (READ(Y_MIN_PIN) ^ Y_MIN_ENDSTOP_INVERTING == 1) ? current_position[1] = current_position[1] + 10 : current_position[1];
  3149. current_position[2] = (READ(Z_MIN_PIN) ^ Z_MIN_ENDSTOP_INVERTING == 1) ? current_position[2] = current_position[2] + 10 : current_position[2];
  3150. }
  3151. plan_buffer_line(current_position[X_AXIS], current_position[Y_AXIS], current_position[Z_AXIS], current_position[E_AXIS], manual_feedrate[0] / 60, active_extruder);
  3152. delay(500);
  3153. if (READ(X_MIN_PIN) ^ X_MIN_ENDSTOP_INVERTING == 1 || READ(Y_MIN_PIN) ^ Y_MIN_ENDSTOP_INVERTING == 1 || READ(Z_MIN_PIN) ^ Z_MIN_ENDSTOP_INVERTING == 1)
  3154. {
  3155. _result = false;
  3156. String _error = String((READ(X_MIN_PIN) ^ X_MIN_ENDSTOP_INVERTING == 1) ? "X" : "") +
  3157. String((READ(Y_MIN_PIN) ^ Y_MIN_ENDSTOP_INVERTING == 1) ? "Y" : "") +
  3158. String((READ(Z_MIN_PIN) ^ Z_MIN_ENDSTOP_INVERTING == 1) ? "Z" : "");
  3159. lcd_selftest_error(3, _error.c_str(), "");
  3160. }
  3161. manage_heater();
  3162. manage_inactivity(true);
  3163. return _result;
  3164. }
  3165. static bool lcd_selfcheck_check_heater(bool _isbed)
  3166. {
  3167. int _counter = 0;
  3168. int _progress = 0;
  3169. bool _stepresult = false;
  3170. bool _docycle = true;
  3171. int _checked_snapshot = (_isbed) ? degBed() : degHotend(0);
  3172. int _opposite_snapshot = (_isbed) ? degHotend(0) : degBed();
  3173. int _cycles = (_isbed) ? 120 : 30;
  3174. target_temperature[0] = (_isbed) ? 0 : 100;
  3175. target_temperature_bed = (_isbed) ? 100 : 0;
  3176. manage_heater();
  3177. manage_inactivity(true);
  3178. do {
  3179. _counter++;
  3180. (_counter < _cycles) ? _docycle = true : _docycle = false;
  3181. manage_heater();
  3182. manage_inactivity(true);
  3183. _progress = (_isbed) ? lcd_selftest_screen(5, _progress, 2, false, 400) : lcd_selftest_screen(1, _progress, 2, false, 400);
  3184. } while (_docycle);
  3185. target_temperature[0] = 0;
  3186. target_temperature_bed = 0;
  3187. manage_heater();
  3188. int _checked_result = (_isbed) ? degBed() - _checked_snapshot : degHotend(0) - _checked_snapshot;
  3189. int _opposite_result = (_isbed) ? degHotend(0) - _opposite_snapshot : degBed() - _opposite_snapshot;
  3190. if (_opposite_result < (_isbed) ? 10 : 3)
  3191. {
  3192. if (_checked_result >= (_isbed) ? 3 : 10)
  3193. {
  3194. _stepresult = true;
  3195. }
  3196. else
  3197. {
  3198. lcd_selftest_error(1, "", "");
  3199. }
  3200. }
  3201. else
  3202. {
  3203. lcd_selftest_error(2, "", "");
  3204. }
  3205. manage_heater();
  3206. manage_inactivity(true);
  3207. return _stepresult;
  3208. }
  3209. static void lcd_selftest_error(int _error_no, const char *_error_1, const char *_error_2)
  3210. {
  3211. lcd_implementation_quick_feedback();
  3212. target_temperature[0] = 0;
  3213. target_temperature_bed = 0;
  3214. manage_heater();
  3215. manage_inactivity();
  3216. lcd_implementation_clear();
  3217. lcd.setCursor(0, 0);
  3218. lcd_printPGM(MSG_SELFTEST_ERROR);
  3219. lcd.setCursor(0, 1);
  3220. lcd_printPGM(MSG_SELFTEST_PLEASECHECK);
  3221. switch (_error_no)
  3222. {
  3223. case 1:
  3224. lcd.setCursor(0, 2);
  3225. lcd_printPGM(MSG_SELFTEST_HEATERTHERMISTOR);
  3226. lcd.setCursor(0, 3);
  3227. lcd_printPGM(MSG_SELFTEST_NOTCONNECTED);
  3228. break;
  3229. case 2:
  3230. lcd.setCursor(0, 2);
  3231. lcd_printPGM(MSG_SELFTEST_BEDHEATER);
  3232. lcd.setCursor(0, 3);
  3233. lcd_printPGM(MSG_SELFTEST_WIRINGERROR);
  3234. break;
  3235. case 3:
  3236. lcd.setCursor(0, 2);
  3237. lcd_printPGM(MSG_SELFTEST_ENDSTOPS);
  3238. lcd.setCursor(0, 3);
  3239. lcd_printPGM(MSG_SELFTEST_WIRINGERROR);
  3240. lcd.setCursor(17, 3);
  3241. lcd.print(_error_1);
  3242. break;
  3243. case 4:
  3244. lcd.setCursor(0, 2);
  3245. lcd_printPGM(MSG_SELFTEST_MOTOR);
  3246. lcd.setCursor(18, 2);
  3247. lcd.print(_error_1);
  3248. lcd.setCursor(0, 3);
  3249. lcd_printPGM(MSG_SELFTEST_ENDSTOP);
  3250. lcd.setCursor(18, 3);
  3251. lcd.print(_error_2);
  3252. break;
  3253. case 5:
  3254. lcd.setCursor(0, 2);
  3255. lcd_printPGM(MSG_SELFTEST_ENDSTOP_NOTHIT);
  3256. lcd.setCursor(0, 3);
  3257. lcd_printPGM(MSG_SELFTEST_MOTOR);
  3258. lcd.setCursor(18, 3);
  3259. lcd.print(_error_1);
  3260. break;
  3261. case 6:
  3262. lcd.setCursor(0, 2);
  3263. lcd_printPGM(MSG_SELFTEST_COOLING_FAN);
  3264. lcd.setCursor(0, 3);
  3265. lcd_printPGM(MSG_SELFTEST_WIRINGERROR);
  3266. lcd.setCursor(18, 3);
  3267. lcd.print(_error_1);
  3268. break;
  3269. case 7:
  3270. lcd.setCursor(0, 2);
  3271. lcd_printPGM(MSG_SELFTEST_EXTRUDER_FAN);
  3272. lcd.setCursor(0, 3);
  3273. lcd_printPGM(MSG_SELFTEST_WIRINGERROR);
  3274. lcd.setCursor(18, 3);
  3275. lcd.print(_error_1);
  3276. break;
  3277. case 8:
  3278. lcd.setCursor(0, 2);
  3279. lcd_printPGM(MSG_LOOSE_PULLEY);
  3280. lcd.setCursor(0, 3);
  3281. lcd_printPGM(MSG_SELFTEST_MOTOR);
  3282. lcd.setCursor(18, 3);
  3283. lcd.print(_error_1);
  3284. break;
  3285. }
  3286. delay(1000);
  3287. lcd_implementation_quick_feedback();
  3288. do {
  3289. delay(100);
  3290. manage_heater();
  3291. manage_inactivity();
  3292. } while (!lcd_clicked());
  3293. LCD_ALERTMESSAGERPGM(MSG_SELFTEST_FAILED);
  3294. lcd_return_to_status();
  3295. }
  3296. static bool lcd_selftest_fan_dialog(int _fan)
  3297. {
  3298. bool _result = false;
  3299. int _errno = 0;
  3300. lcd_implementation_clear();
  3301. lcd.setCursor(0, 0); lcd_printPGM(MSG_SELFTEST_FAN);
  3302. switch (_fan)
  3303. {
  3304. case 1:
  3305. // extruder cooling fan
  3306. lcd.setCursor(0, 1); lcd_printPGM(MSG_SELFTEST_EXTRUDER_FAN);
  3307. SET_OUTPUT(EXTRUDER_0_AUTO_FAN_PIN);
  3308. WRITE(EXTRUDER_0_AUTO_FAN_PIN, 1);
  3309. _errno = 7;
  3310. break;
  3311. case 2:
  3312. // object cooling fan
  3313. lcd.setCursor(0, 1); lcd_printPGM(MSG_SELFTEST_COOLING_FAN);
  3314. SET_OUTPUT(FAN_PIN);
  3315. analogWrite(FAN_PIN, 255);
  3316. _errno = 6;
  3317. break;
  3318. }
  3319. delay(500);
  3320. lcd.setCursor(1, 2); lcd_printPGM(MSG_SELFTEST_FAN_YES);
  3321. lcd.setCursor(0, 3); lcd.print(">");
  3322. lcd.setCursor(1, 3); lcd_printPGM(MSG_SELFTEST_FAN_NO);
  3323. int8_t enc_dif = 0;
  3324. bool _response = false;
  3325. do
  3326. {
  3327. switch (_fan)
  3328. {
  3329. case 1:
  3330. // extruder cooling fan
  3331. SET_OUTPUT(EXTRUDER_0_AUTO_FAN_PIN);
  3332. WRITE(EXTRUDER_0_AUTO_FAN_PIN, 1);
  3333. break;
  3334. case 2:
  3335. // object cooling fan
  3336. SET_OUTPUT(FAN_PIN);
  3337. analogWrite(FAN_PIN, 255);
  3338. break;
  3339. }
  3340. if (abs((enc_dif - encoderDiff)) > 2) {
  3341. if (enc_dif > encoderDiff) {
  3342. _result = true;
  3343. lcd.setCursor(0, 2); lcd.print(">");
  3344. lcd.setCursor(1, 2); lcd_printPGM(MSG_SELFTEST_FAN_YES);
  3345. lcd.setCursor(0, 3); lcd.print(" ");
  3346. lcd.setCursor(1, 3); lcd_printPGM(MSG_SELFTEST_FAN_NO);
  3347. }
  3348. if (enc_dif < encoderDiff) {
  3349. _result = false;
  3350. lcd.setCursor(0, 2); lcd.print(" ");
  3351. lcd.setCursor(1, 2); lcd_printPGM(MSG_SELFTEST_FAN_YES);
  3352. lcd.setCursor(0, 3); lcd.print(">");
  3353. lcd.setCursor(1, 3); lcd_printPGM(MSG_SELFTEST_FAN_NO);
  3354. }
  3355. enc_dif = 0;
  3356. encoderDiff = 0;
  3357. }
  3358. manage_heater();
  3359. delay(100);
  3360. if (lcd_clicked())
  3361. {
  3362. _response = true;
  3363. }
  3364. } while (!_response);
  3365. SET_OUTPUT(EXTRUDER_0_AUTO_FAN_PIN);
  3366. WRITE(EXTRUDER_0_AUTO_FAN_PIN, 0);
  3367. SET_OUTPUT(FAN_PIN);
  3368. analogWrite(FAN_PIN, 0);
  3369. fanSpeed = 0;
  3370. manage_heater();
  3371. if (!_result)
  3372. {
  3373. const char *_err;
  3374. lcd_selftest_error(_errno, _err, _err);
  3375. }
  3376. return _result;
  3377. }
  3378. static int lcd_selftest_screen(int _step, int _progress, int _progress_scale, bool _clear, int _delay)
  3379. {
  3380. lcd_next_update_millis = millis() + (LCD_UPDATE_INTERVAL * 10000);
  3381. int _step_block = 0;
  3382. const char *_indicator = (_progress > _progress_scale) ? "-" : "|";
  3383. if (_clear) lcd_implementation_clear();
  3384. lcd.setCursor(0, 0);
  3385. if (_step == -1) lcd_printPGM(MSG_SELFTEST_START);
  3386. if (_step == 0) lcd_printPGM(MSG_SELFTEST_CHECK_ENDSTOPS);
  3387. if (_step == 1) lcd_printPGM(MSG_SELFTEST_CHECK_HOTEND);
  3388. if (_step == 2) lcd_printPGM(MSG_SELFTEST_CHECK_X);
  3389. if (_step == 3) lcd_printPGM(MSG_SELFTEST_CHECK_Y);
  3390. if (_step == 4) lcd_printPGM(MSG_SELFTEST_CHECK_Z);
  3391. if (_step == 5) lcd_printPGM(MSG_SELFTEST_CHECK_BED);
  3392. if (_step == 6) lcd_printPGM(MSG_SELFTEST_CHECK_ALLCORRECT);
  3393. if (_step == 7) lcd_printPGM(MSG_SELFTEST_FAILED);
  3394. lcd.setCursor(0, 1);
  3395. lcd.print("--------------------");
  3396. if (_step != 7)
  3397. {
  3398. _step_block = 1;
  3399. lcd_selftest_screen_step(3, 9, ((_step == _step_block) ? 1 : (_step < _step_block) ? 0 : 2), "Hotend", _indicator);
  3400. _step_block = 2;
  3401. lcd_selftest_screen_step(2, 2, ((_step == _step_block) ? 1 : (_step < _step_block) ? 0 : 2), "X", _indicator);
  3402. _step_block = 3;
  3403. lcd_selftest_screen_step(2, 8, ((_step == _step_block) ? 1 : (_step < _step_block) ? 0 : 2), "Y", _indicator);
  3404. _step_block = 4;
  3405. lcd_selftest_screen_step(2, 14, ((_step == _step_block) ? 1 : (_step < _step_block) ? 0 : 2), "Z", _indicator);
  3406. _step_block = 5;
  3407. lcd_selftest_screen_step(3, 0, ((_step == _step_block) ? 1 : (_step < _step_block) ? 0 : 2), "Bed", _indicator);
  3408. }
  3409. if (_delay > 0) delay(_delay);
  3410. _progress++;
  3411. return (_progress > _progress_scale * 2) ? 0 : _progress;
  3412. }
  3413. static void lcd_selftest_screen_step(int _row, int _col, int _state, const char *_name, const char *_indicator)
  3414. {
  3415. lcd.setCursor(_col, _row);
  3416. switch (_state)
  3417. {
  3418. case 1:
  3419. lcd.print(_name);
  3420. lcd.setCursor(_col + strlen(_name), _row);
  3421. lcd.print(":");
  3422. lcd.setCursor(_col + strlen(_name) + 1, _row);
  3423. lcd.print(_indicator);
  3424. break;
  3425. case 2:
  3426. lcd.print(_name);
  3427. lcd.setCursor(_col + strlen(_name), _row);
  3428. lcd.print(":");
  3429. lcd.setCursor(_col + strlen(_name) + 1, _row);
  3430. lcd.print("OK");
  3431. break;
  3432. default:
  3433. lcd.print(_name);
  3434. }
  3435. }
  3436. /** End of menus **/
  3437. static void lcd_quick_feedback()
  3438. {
  3439. lcdDrawUpdate = 2;
  3440. blocking_enc = millis() + 500;
  3441. lcd_implementation_quick_feedback();
  3442. }
  3443. /** Menu action functions **/
  3444. static void menu_action_back(menuFunc_t data) {
  3445. lcd_goto_menu(data);
  3446. }
  3447. static void menu_action_submenu(menuFunc_t data) {
  3448. lcd_goto_menu(data);
  3449. }
  3450. static void menu_action_gcode(const char* pgcode) {
  3451. enquecommand_P(pgcode);
  3452. }
  3453. static void menu_action_setlang(unsigned char lang) {
  3454. lcd_set_lang(lang);
  3455. }
  3456. static void menu_action_function(menuFunc_t data) {
  3457. (*data)();
  3458. }
  3459. static void menu_action_sdfile(const char* filename, char* longFilename)
  3460. {
  3461. loading_flag = false;
  3462. char cmd[30];
  3463. char* c;
  3464. sprintf_P(cmd, PSTR("M23 %s"), filename);
  3465. for (c = &cmd[4]; *c; c++)
  3466. *c = tolower(*c);
  3467. enquecommand(cmd);
  3468. enquecommand_P(PSTR("M24"));
  3469. lcd_return_to_status();
  3470. }
  3471. static void menu_action_sddirectory(const char* filename, char* longFilename)
  3472. {
  3473. card.chdir(filename);
  3474. encoderPosition = 0;
  3475. }
  3476. static void menu_action_setting_edit_bool(const char* pstr, bool* ptr)
  3477. {
  3478. *ptr = !(*ptr);
  3479. }
  3480. /*
  3481. static void menu_action_setting_edit_callback_bool(const char* pstr, bool* ptr, menuFunc_t callback)
  3482. {
  3483. menu_action_setting_edit_bool(pstr, ptr);
  3484. (*callback)();
  3485. }
  3486. */
  3487. #endif//ULTIPANEL
  3488. /** LCD API **/
  3489. void lcd_init()
  3490. {
  3491. lcd_implementation_init();
  3492. #ifdef NEWPANEL
  3493. SET_INPUT(BTN_EN1);
  3494. SET_INPUT(BTN_EN2);
  3495. WRITE(BTN_EN1, HIGH);
  3496. WRITE(BTN_EN2, HIGH);
  3497. #if BTN_ENC > 0
  3498. SET_INPUT(BTN_ENC);
  3499. WRITE(BTN_ENC, HIGH);
  3500. #endif
  3501. #ifdef REPRAPWORLD_KEYPAD
  3502. pinMode(SHIFT_CLK, OUTPUT);
  3503. pinMode(SHIFT_LD, OUTPUT);
  3504. pinMode(SHIFT_OUT, INPUT);
  3505. WRITE(SHIFT_OUT, HIGH);
  3506. WRITE(SHIFT_LD, HIGH);
  3507. #endif
  3508. #else // Not NEWPANEL
  3509. #ifdef SR_LCD_2W_NL // Non latching 2 wire shift register
  3510. pinMode (SR_DATA_PIN, OUTPUT);
  3511. pinMode (SR_CLK_PIN, OUTPUT);
  3512. #elif defined(SHIFT_CLK)
  3513. pinMode(SHIFT_CLK, OUTPUT);
  3514. pinMode(SHIFT_LD, OUTPUT);
  3515. pinMode(SHIFT_EN, OUTPUT);
  3516. pinMode(SHIFT_OUT, INPUT);
  3517. WRITE(SHIFT_OUT, HIGH);
  3518. WRITE(SHIFT_LD, HIGH);
  3519. WRITE(SHIFT_EN, LOW);
  3520. #else
  3521. #ifdef ULTIPANEL
  3522. #error ULTIPANEL requires an encoder
  3523. #endif
  3524. #endif // SR_LCD_2W_NL
  3525. #endif//!NEWPANEL
  3526. #if defined (SDSUPPORT) && defined(SDCARDDETECT) && (SDCARDDETECT > 0)
  3527. pinMode(SDCARDDETECT, INPUT);
  3528. WRITE(SDCARDDETECT, HIGH);
  3529. lcd_oldcardstatus = IS_SD_INSERTED;
  3530. #endif//(SDCARDDETECT > 0)
  3531. #ifdef LCD_HAS_SLOW_BUTTONS
  3532. slow_buttons = 0;
  3533. #endif
  3534. lcd_buttons_update();
  3535. #ifdef ULTIPANEL
  3536. encoderDiff = 0;
  3537. #endif
  3538. }
  3539. //#include <avr/pgmspace.h>
  3540. static volatile bool lcd_update_enabled = true;
  3541. unsigned long lcd_timeoutToStatus = 0;
  3542. void lcd_update_enable(bool enabled)
  3543. {
  3544. if (lcd_update_enabled != enabled) {
  3545. lcd_update_enabled = enabled;
  3546. if (enabled) {
  3547. // Reset encoder position. This is equivalent to re-entering a menu.
  3548. encoderPosition = 0;
  3549. encoderDiff = 0;
  3550. // Enabling the normal LCD update procedure.
  3551. // Reset the timeout interval.
  3552. lcd_timeoutToStatus = millis() + LCD_TIMEOUT_TO_STATUS;
  3553. // Force the keypad update now.
  3554. lcd_next_update_millis = millis() - 1;
  3555. // Full update.
  3556. lcd_implementation_clear();
  3557. #if defined(LCD_PROGRESS_BAR) && defined(SDSUPPORT)
  3558. lcd_set_custom_characters(currentMenu == lcd_status_screen);
  3559. #else
  3560. if (currentMenu == lcd_status_screen)
  3561. lcd_set_custom_characters_degree();
  3562. else
  3563. lcd_set_custom_characters_arrows();
  3564. #endif
  3565. lcd_update(2);
  3566. } else {
  3567. // Clear the LCD always, or let it to the caller?
  3568. }
  3569. }
  3570. }
  3571. void lcd_update(uint8_t lcdDrawUpdateOverride)
  3572. {
  3573. if (lcdDrawUpdate < lcdDrawUpdateOverride)
  3574. lcdDrawUpdate = lcdDrawUpdateOverride;
  3575. if (! lcd_update_enabled)
  3576. return;
  3577. #ifdef LCD_HAS_SLOW_BUTTONS
  3578. slow_buttons = lcd_implementation_read_slow_buttons(); // buttons which take too long to read in interrupt context
  3579. #endif
  3580. lcd_buttons_update();
  3581. #if (SDCARDDETECT > 0)
  3582. if ((IS_SD_INSERTED != lcd_oldcardstatus && lcd_detected()))
  3583. {
  3584. lcdDrawUpdate = 2;
  3585. lcd_oldcardstatus = IS_SD_INSERTED;
  3586. lcd_implementation_init( // to maybe revive the LCD if static electricity killed it.
  3587. #if defined(LCD_PROGRESS_BAR) && defined(SDSUPPORT)
  3588. currentMenu == lcd_status_screen
  3589. #endif
  3590. );
  3591. if (lcd_oldcardstatus)
  3592. {
  3593. card.initsd();
  3594. LCD_MESSAGERPGM(MSG_SD_INSERTED);
  3595. //get_description();
  3596. }
  3597. else
  3598. {
  3599. card.release();
  3600. LCD_MESSAGERPGM(MSG_SD_REMOVED);
  3601. }
  3602. }
  3603. #endif//CARDINSERTED
  3604. if (lcd_next_update_millis < millis())
  3605. {
  3606. #ifdef ULTIPANEL
  3607. #ifdef REPRAPWORLD_KEYPAD
  3608. if (REPRAPWORLD_KEYPAD_MOVE_Z_UP) {
  3609. reprapworld_keypad_move_z_up();
  3610. }
  3611. if (REPRAPWORLD_KEYPAD_MOVE_Z_DOWN) {
  3612. reprapworld_keypad_move_z_down();
  3613. }
  3614. if (REPRAPWORLD_KEYPAD_MOVE_X_LEFT) {
  3615. reprapworld_keypad_move_x_left();
  3616. }
  3617. if (REPRAPWORLD_KEYPAD_MOVE_X_RIGHT) {
  3618. reprapworld_keypad_move_x_right();
  3619. }
  3620. if (REPRAPWORLD_KEYPAD_MOVE_Y_DOWN) {
  3621. reprapworld_keypad_move_y_down();
  3622. }
  3623. if (REPRAPWORLD_KEYPAD_MOVE_Y_UP) {
  3624. reprapworld_keypad_move_y_up();
  3625. }
  3626. if (REPRAPWORLD_KEYPAD_MOVE_HOME) {
  3627. reprapworld_keypad_move_home();
  3628. }
  3629. #endif
  3630. if (abs(encoderDiff) >= ENCODER_PULSES_PER_STEP)
  3631. {
  3632. if (lcdDrawUpdate == 0)
  3633. lcdDrawUpdate = 1;
  3634. encoderPosition += encoderDiff / ENCODER_PULSES_PER_STEP;
  3635. encoderDiff = 0;
  3636. lcd_timeoutToStatus = millis() + LCD_TIMEOUT_TO_STATUS;
  3637. }
  3638. if (LCD_CLICKED)
  3639. lcd_timeoutToStatus = millis() + LCD_TIMEOUT_TO_STATUS;
  3640. #endif//ULTIPANEL
  3641. #ifdef DOGLCD // Changes due to different driver architecture of the DOGM display
  3642. blink++; // Variable for fan animation and alive dot
  3643. u8g.firstPage();
  3644. do
  3645. {
  3646. u8g.setFont(u8g_font_6x10_marlin);
  3647. u8g.setPrintPos(125, 0);
  3648. if (blink % 2) u8g.setColorIndex(1); else u8g.setColorIndex(0); // Set color for the alive dot
  3649. u8g.drawPixel(127, 63); // draw alive dot
  3650. u8g.setColorIndex(1); // black on white
  3651. (*currentMenu)();
  3652. if (!lcdDrawUpdate) break; // Terminate display update, when nothing new to draw. This must be done before the last dogm.next()
  3653. } while (u8g.nextPage());
  3654. #else
  3655. (*currentMenu)();
  3656. #endif
  3657. #ifdef LCD_HAS_STATUS_INDICATORS
  3658. lcd_implementation_update_indicators();
  3659. #endif
  3660. #ifdef ULTIPANEL
  3661. if (lcd_timeoutToStatus < millis() && currentMenu != lcd_status_screen)
  3662. {
  3663. // Exiting a menu. Let's call the menu function the last time with menuExiting flag set to true
  3664. // to give it a chance to save its state.
  3665. // This is useful for example, when the babystep value has to be written into EEPROM.
  3666. if (currentMenu != NULL) {
  3667. menuExiting = true;
  3668. (*currentMenu)();
  3669. menuExiting = false;
  3670. }
  3671. lcd_return_to_status();
  3672. lcdDrawUpdate = 2;
  3673. }
  3674. #endif//ULTIPANEL
  3675. if (lcdDrawUpdate == 2) lcd_implementation_clear();
  3676. if (lcdDrawUpdate) lcdDrawUpdate--;
  3677. lcd_next_update_millis = millis() + LCD_UPDATE_INTERVAL;
  3678. }
  3679. if (!SdFatUtil::test_stack_integrity()) stack_error();
  3680. }
  3681. void lcd_ignore_click(bool b)
  3682. {
  3683. ignore_click = b;
  3684. wait_for_unclick = false;
  3685. }
  3686. void lcd_finishstatus() {
  3687. int len = strlen(lcd_status_message);
  3688. if (len > 0) {
  3689. while (len < LCD_WIDTH) {
  3690. lcd_status_message[len++] = ' ';
  3691. }
  3692. }
  3693. lcd_status_message[LCD_WIDTH] = '\0';
  3694. #if defined(LCD_PROGRESS_BAR) && defined(SDSUPPORT)
  3695. #if PROGRESS_MSG_EXPIRE > 0
  3696. messageTick =
  3697. #endif
  3698. progressBarTick = millis();
  3699. #endif
  3700. lcdDrawUpdate = 2;
  3701. #ifdef FILAMENT_LCD_DISPLAY
  3702. message_millis = millis(); //get status message to show up for a while
  3703. #endif
  3704. }
  3705. void lcd_setstatus(const char* message)
  3706. {
  3707. if (lcd_status_message_level > 0)
  3708. return;
  3709. strncpy(lcd_status_message, message, LCD_WIDTH);
  3710. lcd_finishstatus();
  3711. }
  3712. void lcd_setstatuspgm(const char* message)
  3713. {
  3714. if (lcd_status_message_level > 0)
  3715. return;
  3716. strncpy_P(lcd_status_message, message, LCD_WIDTH);
  3717. lcd_finishstatus();
  3718. }
  3719. void lcd_setalertstatuspgm(const char* message)
  3720. {
  3721. lcd_setstatuspgm(message);
  3722. lcd_status_message_level = 1;
  3723. #ifdef ULTIPANEL
  3724. lcd_return_to_status();
  3725. #endif//ULTIPANEL
  3726. }
  3727. void lcd_reset_alert_level()
  3728. {
  3729. lcd_status_message_level = 0;
  3730. }
  3731. #ifdef DOGLCD
  3732. void lcd_setcontrast(uint8_t value)
  3733. {
  3734. lcd_contrast = value & 63;
  3735. u8g.setContrast(lcd_contrast);
  3736. }
  3737. #endif
  3738. #ifdef ULTIPANEL
  3739. /* Warning: This function is called from interrupt context */
  3740. void lcd_buttons_update()
  3741. {
  3742. #ifdef NEWPANEL
  3743. uint8_t newbutton = 0;
  3744. if (READ(BTN_EN1) == 0) newbutton |= EN_A;
  3745. if (READ(BTN_EN2) == 0) newbutton |= EN_B;
  3746. #if BTN_ENC > 0
  3747. if ((blocking_enc < millis()) && (READ(BTN_ENC) == 0))
  3748. newbutton |= EN_C;
  3749. #endif
  3750. buttons = newbutton;
  3751. #ifdef LCD_HAS_SLOW_BUTTONS
  3752. buttons |= slow_buttons;
  3753. #endif
  3754. #ifdef REPRAPWORLD_KEYPAD
  3755. // for the reprapworld_keypad
  3756. uint8_t newbutton_reprapworld_keypad = 0;
  3757. WRITE(SHIFT_LD, LOW);
  3758. WRITE(SHIFT_LD, HIGH);
  3759. for (int8_t i = 0; i < 8; i++) {
  3760. newbutton_reprapworld_keypad = newbutton_reprapworld_keypad >> 1;
  3761. if (READ(SHIFT_OUT))
  3762. newbutton_reprapworld_keypad |= (1 << 7);
  3763. WRITE(SHIFT_CLK, HIGH);
  3764. WRITE(SHIFT_CLK, LOW);
  3765. }
  3766. buttons_reprapworld_keypad = ~newbutton_reprapworld_keypad; //invert it, because a pressed switch produces a logical 0
  3767. #endif
  3768. #else //read it from the shift register
  3769. uint8_t newbutton = 0;
  3770. WRITE(SHIFT_LD, LOW);
  3771. WRITE(SHIFT_LD, HIGH);
  3772. unsigned char tmp_buttons = 0;
  3773. for (int8_t i = 0; i < 8; i++)
  3774. {
  3775. newbutton = newbutton >> 1;
  3776. if (READ(SHIFT_OUT))
  3777. newbutton |= (1 << 7);
  3778. WRITE(SHIFT_CLK, HIGH);
  3779. WRITE(SHIFT_CLK, LOW);
  3780. }
  3781. buttons = ~newbutton; //invert it, because a pressed switch produces a logical 0
  3782. #endif//!NEWPANEL
  3783. //manage encoder rotation
  3784. uint8_t enc = 0;
  3785. if (buttons & EN_A) enc |= B01;
  3786. if (buttons & EN_B) enc |= B10;
  3787. if (enc != lastEncoderBits)
  3788. {
  3789. switch (enc)
  3790. {
  3791. case encrot0:
  3792. if (lastEncoderBits == encrot3)
  3793. encoderDiff++;
  3794. else if (lastEncoderBits == encrot1)
  3795. encoderDiff--;
  3796. break;
  3797. case encrot1:
  3798. if (lastEncoderBits == encrot0)
  3799. encoderDiff++;
  3800. else if (lastEncoderBits == encrot2)
  3801. encoderDiff--;
  3802. break;
  3803. case encrot2:
  3804. if (lastEncoderBits == encrot1)
  3805. encoderDiff++;
  3806. else if (lastEncoderBits == encrot3)
  3807. encoderDiff--;
  3808. break;
  3809. case encrot3:
  3810. if (lastEncoderBits == encrot2)
  3811. encoderDiff++;
  3812. else if (lastEncoderBits == encrot0)
  3813. encoderDiff--;
  3814. break;
  3815. }
  3816. }
  3817. lastEncoderBits = enc;
  3818. }
  3819. bool lcd_detected(void)
  3820. {
  3821. #if (defined(LCD_I2C_TYPE_MCP23017) || defined(LCD_I2C_TYPE_MCP23008)) && defined(DETECT_DEVICE)
  3822. return lcd.LcdDetected() == 1;
  3823. #else
  3824. return true;
  3825. #endif
  3826. }
  3827. void lcd_buzz(long duration, uint16_t freq)
  3828. {
  3829. #ifdef LCD_USE_I2C_BUZZER
  3830. lcd.buzz(duration, freq);
  3831. #endif
  3832. }
  3833. bool lcd_clicked()
  3834. {
  3835. return LCD_CLICKED;
  3836. }
  3837. #endif//ULTIPANEL
  3838. /********************************/
  3839. /** Float conversion utilities **/
  3840. /********************************/
  3841. // convert float to string with +123.4 format
  3842. char conv[8];
  3843. char *ftostr3(const float &x)
  3844. {
  3845. return itostr3((int)x);
  3846. }
  3847. char *itostr2(const uint8_t &x)
  3848. {
  3849. //sprintf(conv,"%5.1f",x);
  3850. int xx = x;
  3851. conv[0] = (xx / 10) % 10 + '0';
  3852. conv[1] = (xx) % 10 + '0';
  3853. conv[2] = 0;
  3854. return conv;
  3855. }
  3856. // Convert float to string with 123.4 format, dropping sign
  3857. char *ftostr31(const float &x)
  3858. {
  3859. int xx = x * 10;
  3860. conv[0] = (xx >= 0) ? '+' : '-';
  3861. xx = abs(xx);
  3862. conv[1] = (xx / 1000) % 10 + '0';
  3863. conv[2] = (xx / 100) % 10 + '0';
  3864. conv[3] = (xx / 10) % 10 + '0';
  3865. conv[4] = '.';
  3866. conv[5] = (xx) % 10 + '0';
  3867. conv[6] = 0;
  3868. return conv;
  3869. }
  3870. // Convert float to string with 123.4 format
  3871. char *ftostr31ns(const float &x)
  3872. {
  3873. int xx = x * 10;
  3874. //conv[0]=(xx>=0)?'+':'-';
  3875. xx = abs(xx);
  3876. conv[0] = (xx / 1000) % 10 + '0';
  3877. conv[1] = (xx / 100) % 10 + '0';
  3878. conv[2] = (xx / 10) % 10 + '0';
  3879. conv[3] = '.';
  3880. conv[4] = (xx) % 10 + '0';
  3881. conv[5] = 0;
  3882. return conv;
  3883. }
  3884. char *ftostr32(const float &x)
  3885. {
  3886. long xx = x * 100;
  3887. if (xx >= 0)
  3888. conv[0] = (xx / 10000) % 10 + '0';
  3889. else
  3890. conv[0] = '-';
  3891. xx = abs(xx);
  3892. conv[1] = (xx / 1000) % 10 + '0';
  3893. conv[2] = (xx / 100) % 10 + '0';
  3894. conv[3] = '.';
  3895. conv[4] = (xx / 10) % 10 + '0';
  3896. conv[5] = (xx) % 10 + '0';
  3897. conv[6] = 0;
  3898. return conv;
  3899. }
  3900. //// Convert float to rj string with 123.45 format
  3901. char *ftostr32ns(const float &x) {
  3902. long xx = abs(x);
  3903. conv[0] = xx >= 10000 ? (xx / 10000) % 10 + '0' : ' ';
  3904. conv[1] = xx >= 1000 ? (xx / 1000) % 10 + '0' : ' ';
  3905. conv[2] = xx >= 100 ? (xx / 100) % 10 + '0' : '0';
  3906. conv[3] = '.';
  3907. conv[4] = (xx / 10) % 10 + '0';
  3908. conv[5] = xx % 10 + '0';
  3909. return conv;
  3910. }
  3911. // Convert float to string with 1.234 format
  3912. char *ftostr43(const float &x)
  3913. {
  3914. long xx = x * 1000;
  3915. if (xx >= 0)
  3916. conv[0] = (xx / 1000) % 10 + '0';
  3917. else
  3918. conv[0] = '-';
  3919. xx = abs(xx);
  3920. conv[1] = '.';
  3921. conv[2] = (xx / 100) % 10 + '0';
  3922. conv[3] = (xx / 10) % 10 + '0';
  3923. conv[4] = (xx) % 10 + '0';
  3924. conv[5] = 0;
  3925. return conv;
  3926. }
  3927. //Float to string with 1.23 format
  3928. char *ftostr12ns(const float &x)
  3929. {
  3930. long xx = x * 100;
  3931. xx = abs(xx);
  3932. conv[0] = (xx / 100) % 10 + '0';
  3933. conv[1] = '.';
  3934. conv[2] = (xx / 10) % 10 + '0';
  3935. conv[3] = (xx) % 10 + '0';
  3936. conv[4] = 0;
  3937. return conv;
  3938. }
  3939. //Float to string with 1.234 format
  3940. char *ftostr13ns(const float &x)
  3941. {
  3942. long xx = x * 1000;
  3943. if (xx >= 0)
  3944. conv[0] = ' ';
  3945. else
  3946. conv[0] = '-';
  3947. xx = abs(xx);
  3948. conv[1] = (xx / 1000) % 10 + '0';
  3949. conv[2] = '.';
  3950. conv[3] = (xx / 100) % 10 + '0';
  3951. conv[4] = (xx / 10) % 10 + '0';
  3952. conv[5] = (xx) % 10 + '0';
  3953. conv[6] = 0;
  3954. return conv;
  3955. }
  3956. // convert float to space-padded string with -_23.4_ format
  3957. char *ftostr32sp(const float &x) {
  3958. long xx = abs(x * 100);
  3959. uint8_t dig;
  3960. if (x < 0) { // negative val = -_0
  3961. conv[0] = '-';
  3962. dig = (xx / 1000) % 10;
  3963. conv[1] = dig ? '0' + dig : ' ';
  3964. }
  3965. else { // positive val = __0
  3966. dig = (xx / 10000) % 10;
  3967. if (dig) {
  3968. conv[0] = '0' + dig;
  3969. conv[1] = '0' + (xx / 1000) % 10;
  3970. }
  3971. else {
  3972. conv[0] = ' ';
  3973. dig = (xx / 1000) % 10;
  3974. conv[1] = dig ? '0' + dig : ' ';
  3975. }
  3976. }
  3977. conv[2] = '0' + (xx / 100) % 10; // lsd always
  3978. dig = xx % 10;
  3979. if (dig) { // 2 decimal places
  3980. conv[5] = '0' + dig;
  3981. conv[4] = '0' + (xx / 10) % 10;
  3982. conv[3] = '.';
  3983. }
  3984. else { // 1 or 0 decimal place
  3985. dig = (xx / 10) % 10;
  3986. if (dig) {
  3987. conv[4] = '0' + dig;
  3988. conv[3] = '.';
  3989. }
  3990. else {
  3991. conv[3] = conv[4] = ' ';
  3992. }
  3993. conv[5] = ' ';
  3994. }
  3995. conv[6] = '\0';
  3996. return conv;
  3997. }
  3998. char *itostr31(const int &xx)
  3999. {
  4000. conv[0] = (xx >= 0) ? '+' : '-';
  4001. conv[1] = (xx / 1000) % 10 + '0';
  4002. conv[2] = (xx / 100) % 10 + '0';
  4003. conv[3] = (xx / 10) % 10 + '0';
  4004. conv[4] = '.';
  4005. conv[5] = (xx) % 10 + '0';
  4006. conv[6] = 0;
  4007. return conv;
  4008. }
  4009. // Convert int to rj string with 123 or -12 format
  4010. char *itostr3(const int &x)
  4011. {
  4012. int xx = x;
  4013. if (xx < 0) {
  4014. conv[0] = '-';
  4015. xx = -xx;
  4016. } else if (xx >= 100)
  4017. conv[0] = (xx / 100) % 10 + '0';
  4018. else
  4019. conv[0] = ' ';
  4020. if (xx >= 10)
  4021. conv[1] = (xx / 10) % 10 + '0';
  4022. else
  4023. conv[1] = ' ';
  4024. conv[2] = (xx) % 10 + '0';
  4025. conv[3] = 0;
  4026. return conv;
  4027. }
  4028. // Convert int to lj string with 123 format
  4029. char *itostr3left(const int &xx)
  4030. {
  4031. if (xx >= 100)
  4032. {
  4033. conv[0] = (xx / 100) % 10 + '0';
  4034. conv[1] = (xx / 10) % 10 + '0';
  4035. conv[2] = (xx) % 10 + '0';
  4036. conv[3] = 0;
  4037. }
  4038. else if (xx >= 10)
  4039. {
  4040. conv[0] = (xx / 10) % 10 + '0';
  4041. conv[1] = (xx) % 10 + '0';
  4042. conv[2] = 0;
  4043. }
  4044. else
  4045. {
  4046. conv[0] = (xx) % 10 + '0';
  4047. conv[1] = 0;
  4048. }
  4049. return conv;
  4050. }
  4051. // Convert int to rj string with 1234 format
  4052. char *itostr4(const int &xx) {
  4053. conv[0] = xx >= 1000 ? (xx / 1000) % 10 + '0' : ' ';
  4054. conv[1] = xx >= 100 ? (xx / 100) % 10 + '0' : ' ';
  4055. conv[2] = xx >= 10 ? (xx / 10) % 10 + '0' : ' ';
  4056. conv[3] = xx % 10 + '0';
  4057. conv[4] = 0;
  4058. return conv;
  4059. }
  4060. // Convert float to rj string with 12345 format
  4061. char *ftostr5(const float &x) {
  4062. long xx = abs(x);
  4063. conv[0] = xx >= 10000 ? (xx / 10000) % 10 + '0' : ' ';
  4064. conv[1] = xx >= 1000 ? (xx / 1000) % 10 + '0' : ' ';
  4065. conv[2] = xx >= 100 ? (xx / 100) % 10 + '0' : ' ';
  4066. conv[3] = xx >= 10 ? (xx / 10) % 10 + '0' : ' ';
  4067. conv[4] = xx % 10 + '0';
  4068. conv[5] = 0;
  4069. return conv;
  4070. }
  4071. // Convert float to string with +1234.5 format
  4072. char *ftostr51(const float &x)
  4073. {
  4074. long xx = x * 10;
  4075. conv[0] = (xx >= 0) ? '+' : '-';
  4076. xx = abs(xx);
  4077. conv[1] = (xx / 10000) % 10 + '0';
  4078. conv[2] = (xx / 1000) % 10 + '0';
  4079. conv[3] = (xx / 100) % 10 + '0';
  4080. conv[4] = (xx / 10) % 10 + '0';
  4081. conv[5] = '.';
  4082. conv[6] = (xx) % 10 + '0';
  4083. conv[7] = 0;
  4084. return conv;
  4085. }
  4086. // Convert float to string with +123.45 format
  4087. char *ftostr52(const float &x)
  4088. {
  4089. long xx = x * 100;
  4090. conv[0] = (xx >= 0) ? '+' : '-';
  4091. xx = abs(xx);
  4092. conv[1] = (xx / 10000) % 10 + '0';
  4093. conv[2] = (xx / 1000) % 10 + '0';
  4094. conv[3] = (xx / 100) % 10 + '0';
  4095. conv[4] = '.';
  4096. conv[5] = (xx / 10) % 10 + '0';
  4097. conv[6] = (xx) % 10 + '0';
  4098. conv[7] = 0;
  4099. return conv;
  4100. }
  4101. /*
  4102. // Callback for after editing PID i value
  4103. // grab the PID i value out of the temp variable; scale it; then update the PID driver
  4104. void copy_and_scalePID_i()
  4105. {
  4106. #ifdef PIDTEMP
  4107. Ki = scalePID_i(raw_Ki);
  4108. updatePID();
  4109. #endif
  4110. }
  4111. // Callback for after editing PID d value
  4112. // grab the PID d value out of the temp variable; scale it; then update the PID driver
  4113. void copy_and_scalePID_d()
  4114. {
  4115. #ifdef PIDTEMP
  4116. Kd = scalePID_d(raw_Kd);
  4117. updatePID();
  4118. #endif
  4119. }
  4120. */
  4121. #endif //ULTRA_LCD