Marcio Teixeira
6a865a6146
Multi-language support ( #15453 )
2019-10-09 19:46:10 -05:00
LinFor
58f81f8e7e
Followup to progress override ( #15488 )
2019-10-08 15:24:14 -05:00
Scott Lahteine
e3fd0519b3
Reduce need for UNUSED
2019-09-30 22:56:22 -05:00
Scott Lahteine
50e4545255
Add custom types for position ( #15204 )
2019-09-29 04:25:39 -05:00
Scott Lahteine
455dabb183
Add a feedRate_t data type ( #15349 )
2019-09-26 01:28:09 -05:00
Robby Candra
3f129b6574
Touch Buttons variable repeat delay ( #15236 )
2019-09-12 22:14:24 -05:00
Scott Lahteine
841c8ce0d9
Remove PROMPT_INFO / PROMPT_GCODE_INFO ( #15210 )
2019-09-09 15:43:06 -05:00
Robby Candra
6b05d5d65d
Allow TOUCH_BUTTONS to be swapped ( #15100 )
2019-09-04 13:13:05 -05:00
Ludy
3f77d6a551
Fix expire_status warning ( #15094 )
2019-08-29 16:05:22 -05:00
Robby Candra
38983fdfa9
Add 'Back' Button for Touch TFT 320x240 ( #15060 )
2019-08-29 01:19:07 -05:00
Scott Lahteine
3ac76f0489
Invariant Marlin bootscreen ( #15057 )
2019-08-28 07:40:18 -05:00
Marcio Teixeira
e61e54acfd
Fix TURBO_BACK_MENU_ITEM compile error ( #15019 )
2019-08-23 22:29:00 -05:00
Scott Lahteine
5e777601f3
Add TURBO_BACK_MENU_ITEM option ( #14991 )
2019-08-20 19:37:03 -05:00
Ludy
05995d1fd6
Unify buzz methods as MarlinUI::buzz ( #14803 )
2019-08-20 02:01:37 -05:00
Robby Candra
823178c272
Use u8g int type for screen coordinates ( #14965 )
2019-08-17 19:58:38 -05:00
Robby Candra
d2d71caa3b
Clean up Touch pins. Better up/down touch response. ( #14900 )
2019-08-10 01:42:52 -05:00
Ludy
528c9885f2
Fix wait_for_user + PAUSE_BEFORE_DEPLOY_STOW issue ( #14831 )
2019-08-08 01:52:20 -05:00
Tim Moore
940c59d9da
Overlord i2c LCD with LEDs and buzzer ( #14801 )
2019-08-02 06:19:45 -05:00
Robby Candra
128eed6b57
Option to reverse select direction/buttons ( #14693 )
2019-07-30 17:42:57 -05:00
Marcio Teixeira
eefe3f595a
New options: Bootscreen as Info, game Easter-egg ( #13829 )
2019-07-28 22:47:20 -05:00
Ludy
c4bb458763
BUZZ cleanup ( #14760 )
2019-07-28 19:14:50 -05:00
Marcio Teixeira
ca4d6f4470
Fix compile error (bad return type) ( #14660 )
2019-07-17 19:49:26 -05:00
Robby Candra
c9aa68ef7a
Encoder direction: Wrangle, Revert select screen change ( #14628 )
2019-07-17 19:41:15 -05:00
Marcio Teixeira
27c487bab7
Print progress enhancements ( #14647 )
2019-07-17 03:14:44 -05:00
Tanguy Pruvot
81d629bc47
Robin & Longer3D SPI TFT driver ( #14595 )
2019-07-14 18:16:26 -05:00
Scott Lahteine
750a16ad38
Fix MIN/MAX function collision with macros
2019-07-05 18:14:02 -05:00
Scott Lahteine
10b85be405
status_message_level => alert_level
2019-07-01 00:47:08 -05:00
Scott Lahteine
93cd66ac11
Tweaky change from (C) to (c)
2019-06-27 23:58:16 -05:00
Scott Lahteine
651f3eeed0
Clean up trailing whitespace
2019-06-17 20:22:07 -05:00
InsanityAutomation
b7eeb5b13b
Move BLTouch options to adv config ( #14131 )
...
Plus other BLTouch and menu enhancements.
2019-06-10 17:46:42 -05:00
InsanityAutomation
f889cc6ea6
ExtUI parity with SPI LCDs ( #14172 )
2019-05-30 16:24:13 -05:00
Scott Lahteine
ad4ffa1d2f
Use C++ language supported 'nullptr' ( #13944 )
2019-05-09 11:45:55 -05:00
Scott Lahteine
23ec650410
Consolidate Malyan LCD and ExtUI
2019-05-07 21:31:30 -05:00
Scott Lahteine
5051909c3c
Update do_select_screen for general use ( #13800 )
2019-04-24 10:13:44 -05:00
Scott Lahteine
321a5e6580
Fix SD card reselect when scrolled ( #13624 )
...
- Change encoder position to 16-bit integer.
- Fix `SD_REPRINT_LAST_SELECTED_FILE` when the screen is scrolled.
2019-04-08 21:10:41 -05:00
Scott Lahteine
9abe9aff56
Confirm before starting SD print ( #13616 )
2019-04-08 13:44:35 -05:00
Scott Lahteine
7e0008f5b3
Fix SETCURSOR_RJ
2019-04-07 20:25:54 -05:00
Scott Lahteine
10b9632bed
Fix menu history item selection
2019-04-04 02:41:23 -05:00
Scott Lahteine
d8329d858d
Default argument to defer_status_screen
2019-03-23 16:33:37 -05:00
Scott Lahteine
58bca67883
Unify status scrolling further
2019-03-17 07:56:35 -05:00
Scott Lahteine
49cf92dc36
Extended condition macros ( #13419 )
...
Allow `ENABLED`, `DISABLED`, `PIN_EXISTS`, and `BUTTON_EXISTS` to take multiple arguments. Also add:
- Alias `ANY(...)` for `!DISABLED(...)`
- Alias `ANY_PIN(...)` for `PIN_EXISTS(a) || PIN_EXISTS(b) ...`
- Alias `EITHER(A,B)` for `ANY(...)`
- Alias `ALL(...)` and `BOTH(A,B)` for `ENABLED(...)`
- `NONE(...)` for `DISABLED(...)`
2019-03-16 23:43:06 -05:00
Ludy
59353546e8
Fix BUTTON_EXISTS and misplaced comma ( #13411 )
...
Fixes #13410 and redeclaration of `BUTTON_EXISTS`
2019-03-16 11:59:12 -05:00
Scott Lahteine
9a515cbd32
Fix Pause Print message and behavior ( #13394 )
2019-03-14 02:26:07 -05:00
7eggert
10c8c034bd
Allow both encoder and ADC keypad ( #13355 )
2019-03-11 18:10:56 -05:00
Scott Lahteine
0feeef2604
Update copyright in headers
2019-02-12 15:30:11 -06:00
Scott Lahteine
6de3d34378
M166 Gradients, LCD Menu for 2-channel Mixer (Geeetech A10M/A20M) ( #13022 )
2019-02-10 04:54:23 -06:00
Marcio Teixeira
902d5b0f8b
Allow ExtUI to use LCD_SET_PROGRESS_MANUALLY ( #12628 )
2018-12-12 17:21:37 -06:00
Scott Lahteine
fd2998efd5
Revert ADC_KEYPAD direction behavior ( #12508 )
2018-11-22 06:00:00 -06:00
Scott Lahteine
c5642a894f
Fix ADC_KEYPAD middle button ( #12493 )
2018-11-20 21:39:30 -06:00
Scott Lahteine
817a37169a
Apply/unapply const here and there
2018-11-20 06:44:21 -06:00