-
-
Notifications
You must be signed in to change notification settings - Fork 19.5k
Updating DWIN menus to Marlin language_xx.h strings using GET_TEXT_F #19053
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Updating DWIN menus to Marlin language_xx.h strings using GET_TEXT_F #19053
Conversation
This is probably as complete as I can go right now without doing full structural changes to menus that seem to be unnecessarily complex. ie the Prepare menu. That will be much more invasive than these. |
The screens in However, the next effort for this display is to implement all the necessary There are some extra challenges because this display is persistent and can scroll its contents and do other tricks, so the typical screen update loop probably won't be applicable. But a crude "erase-and-redraw-everything" method could be developed pretty rapidly at first and then the screen update methods can be optimized from there. I'm going to work on a first implementation of MarlinUI for this display over the weekend and should soon have something semi-working. |
… into bugfix-2.0.x * 'bugfix-2.0.x' of https://github.com/MarlinFirmware/Marlin: (33 commits) Minor cleanup w/r/t LEDs TFT32 for MKS Robin Nano 1.2 (MarlinFirmware#19031) [cron] Bump distribution date (2020-08-24) Feedrate comment (MarlinFirmware#19116) Neopixel => NeoPixel Fix up conditions, comments Fix DUET_SMART_EFFECTOR Consistent static/value item macros [cron] Bump distribution date (2020-08-23) Fix probing margin sanity-check PGMSTR constexpr => const NOZZLE_CLEAN_NO_Y (MarlinFirmware#18870) Change XY_PROBE_SPEED format to (x*60) (MarlinFirmware#18997) Reformat pins files Permit ST7789V orientation override (MarlinFirmware#19044) Prefer Servo AVR timer4 over 3 (MarlinFirmware#19025) DIGIPOT_I2C pins for SMOOTHIEBOARD (MarlinFirmware#19098) Translatable strings on Ender-3 V2 DWIN (MarlinFirmware#19053) HIGH/LOW naming of pin state settings (MarlinFirmware#19089) Update copy_marlin_variant_to_framework.py ...
Co-authored-by: Scott Lahteine <[email protected]>
Co-authored-by: Scott Lahteine <[email protected]>
Co-authored-by: Scott Lahteine <[email protected]>
Co-authored-by: Scott Lahteine <[email protected]>
This is a first-run at converting a menu within the DWIN system to use strings instead of copying parts of a JPG file between areas of the screen.
This allows us to start using the marlin language_XX.h files to localise menu items.
While this can be merged, I'm submitting for feedback as if this is the preferable way to do this before I take on more of the menus.
Feedback is welcome.