LcdMenu icon indicating copy to clipboard operation
LcdMenu copied to clipboard

Blink active Widget during editing.

Open TBAMax opened this issue 10 months ago • 3 comments

Description

Blink the active widget during editing.

Screenshots/Video (if applicable)

i0iylqnm

How Has This Been Tested?

Tested in the Wokwi simulator using Widgets.ino example

Additional Notes

Currently no other indicator worked properly for editing widgets. The LCD-s own blinker did not play well with the menusystem.

Resolves #320


Checklist

General Requirements

  • [ ] I have kept this PR in draft until all the required tasks are completed.
  • [ ] I have reviewed the contributing guidelines for this project.
  • [ ] I have tagged this PR with breaking-change if it introduces a breaking change.
  • [ ] I have checked that this PR does not introduce any breaking changes unless explicitly stated.
  • [ ] I have checked that changes generate no new warnings.
  • [x] I have performed a self-review of my own code
  • [ ] I have built and tested ALL the examples to ensure that I haven't broken anything.

Feature

  • [x] This PR is a new feature
  • [ ] I have tagged this PR with feature.
  • [ ] I have included an example sketch file.
  • [x] I have commented my code thoroughly.
  • [ ] I have added documentation for the new feature.
  • [ ] I have generated and reviewed the documentation locally.
  • [ ] I have created a functionality test to validate the new feature.

Summary by CodeRabbit

Summary by CodeRabbit

  • New Features
    • Widget Navigation: The interface now clearly indicates when no widget is active, making navigation more intuitive.
    • Responsive Menu Updates: In edit mode, menus update more frequently for a smoother, more responsive user experience.
    • Enhanced Blinking Visuals: Display elements benefit from a more stable and consistent blinking behavior, providing reliable visual feedback.
    • Blinker State Management: New methods allow for better control and querying of the blinker status in the menu and character display.

TBAMax avatar Mar 26 '25 04:03 TBAMax

📝 Walkthrough

Walkthrough

The pull request updates several components related to widget management and blinking behavior. In the BaseItemManyWidgets class, the widget iteration index type in the draw method was changed from uint8_t to size_t, and blinking behavior was refined by clearing the widget area when the blinker is off and the renderer has focus. The process method now resets the blinker state before processing commands in edit mode. In MenuScreen, the poll method adjusts the polling interval to 100 milliseconds during edit mode and removes the edit mode check from the item skipping condition. The CharacterDisplayRenderer disables direct blinker drawing calls and introduces isBlinkerOn and resetBlinkerOn methods to manage blinking state with fixed timing intervals. Corresponding changes in MenuRenderer add blinker state variables and pure virtual methods to support this new blinking behavior.

Sequence Diagram(s)

sequenceDiagram
    participant User
    participant BaseItemManyWidgets
    User->>BaseItemManyWidgets: Trigger process/edit event
    alt activeWidget is negative
        BaseItemManyWidgets->>BaseItemManyWidgets: Set activeWidget to 0 (enter edit mode)
    else activeWidget is non-negative
        BaseItemManyWidgets->>BaseItemManyWidgets: Reset blinker state
        BaseItemManyWidgets->>BaseItemManyWidgets: Process active widget command
    end
sequenceDiagram
    participant Renderer
    participant CharacterDisplayRenderer
    Renderer->>CharacterDisplayRenderer: Call isBlinkerOn()
    CharacterDisplayRenderer->>CharacterDisplayRenderer: Evaluate elapsed time (600ms on / 200ms off)
    CharacterDisplayRenderer-->>Renderer: Return current blinker state

    Renderer->>CharacterDisplayRenderer: Call resetBlinkerOn()
    CharacterDisplayRenderer->>CharacterDisplayRenderer: Set blinkerOn to true and update timer

Assessment against linked issues

Objective Addressed Explanation
Implement entire editable value blinking with configurable timing (#320) Blinking logic uses fixed timing intervals; no configurable timing implemented.

Possibly related PRs

  • forntoh/LcdMenu#343: Related to changes in MenuScreen::poll method, reversing a previous check for edit mode in polling logic.
  • forntoh/LcdMenu#248: Related to the initial implementation and core methods of BaseItemManyWidgets, which are modified in this PR.
  • forntoh/LcdMenu#258: Related to modifications in BaseItemManyWidgets class, specifically in widget index handling and blinking behavior.

[!NOTE]

⚡️ AI Code Reviews for VS Code, Cursor, Windsurf

CodeRabbit now has a plugin for VS Code, Cursor and Windsurf. This brings AI code reviews directly in the code editor. Each commit is reviewed immediately, finding bugs before the PR is raised. Seamless context handoff to your AI code agent ensures that you can easily incorporate review feedback. Learn more here.

✨ Finishing Touches
  • [ ] 📝 Generate Docstrings

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share
🪧 Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>, please review it.
    • Explain this complex logic.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai explain this code block.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read src/utils.ts and explain its main purpose.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

Support

Need help? Create a ticket on our support page for assistance with any issues or questions.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (Invoked using PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai generate docstrings to generate docstrings for this PR.
  • @coderabbitai generate sequence diagram to generate a sequence diagram of the changes in this PR.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai anywhere in the PR title to generate the title automatically.

CodeRabbit Configuration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • Please see the configuration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

coderabbitai[bot] avatar Mar 26 '25 04:03 coderabbitai[bot]

Memory usage change @ 191598b882579cc7c59fd6061f832976286fad8a

Board flash % RAM for global variables %
STMicroelectronics:stm32:GenF1 :small_red_triangle: +64 - +176 +0.2 - +0.54 :small_red_triangle: +4 - +4 +0.04 - +0.04
arduino:avr:uno :small_red_triangle: +126 - +308 +0.39 - +0.95 :small_red_triangle: +9 - +9 +0.44 - +0.44
arduino:samd:mkr1000 :small_red_triangle: +64 - +216 +0.02 - +0.08 :small_red_triangle: +4 - +4 +0.01 - +0.01
esp32:esp32:esp32 :small_red_triangle: +64 - +212 0.0 - +0.02 :small_red_triangle: 0 - +8 0.0 - 0.0
esp8266:esp8266:huzzah N/A N/A N/A N/A
Click for full report table
Board examples/Basic
flash
% examples/Basic
RAM for global variables
% examples/ButtonAdapter
flash
% examples/ButtonAdapter
RAM for global variables
% examples/Callbacks
flash
% examples/Callbacks
RAM for global variables
% examples/InputRotary
flash
% examples/InputRotary
RAM for global variables
% examples/IntFloatValues
flash
% examples/IntFloatValues
RAM for global variables
% examples/KeyboardAdapter
flash
% examples/KeyboardAdapter
RAM for global variables
% examples/List
flash
% examples/List
RAM for global variables
% examples/SimpleRotary
flash
% examples/SimpleRotary
RAM for global variables
% examples/SSD1803A_I2C
flash
% examples/SSD1803A_I2C
RAM for global variables
% examples/Widgets
flash
% examples/Widgets
RAM for global variables
% examples/UseByRef
flash
% examples/UseByRef
RAM for global variables
% examples/RTOS
flash
% examples/RTOS
RAM for global variables
%
STMicroelectronics:stm32:GenF1 64 0.2 4 0.04 64 0.2 4 0.04 64 0.2 4 0.04 64 0.2 4 0.04 168 0.51 4 0.04 64 0.2 4 0.04 160 0.49 4 0.04 168 0.51 4 0.04 64 0.2 4 0.04 168 0.51 4 0.04 176 0.54 4 0.04
arduino:avr:uno 126 0.39 9 0.44 126 0.39 9 0.44 126 0.39 9 0.44 126 0.39 9 0.44 274 0.85 9 0.44 126 0.39 9 0.44 274 0.85 9 0.44 278 0.86 9 0.44 126 0.39 9 0.44 278 0.86 9 0.44 308 0.95 9 0.44 164 0.51 9 0.44
arduino:samd:mkr1000 64 0.02 4 0.01 64 0.02 4 0.01 64 0.02 4 0.01 64 0.02 4 0.01 176 0.07 4 0.01 64 0.02 4 0.01 176 0.07 4 0.01 176 0.07 4 0.01 64 0.02 4 0.01 176 0.07 4 0.01 216 0.08 4 0.01
esp32:esp32:esp32 64 0.0 0 0.0 64 0.0 8 0.0 64 0.0 0 0.0 64 0.0 0 0.0 184 0.01 0 0.0 64 0.0 8 0.0 184 0.01 8 0.0 192 0.01 0 0.0 64 0.0 0 0.0 176 0.01 8 0.0 212 0.02 8 0.0 84 0.01 0 0.0
esp8266:esp8266:huzzah N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A
Click for full report CSV
Board,examples/Basic<br>flash,%,examples/Basic<br>RAM for global variables,%,examples/ButtonAdapter<br>flash,%,examples/ButtonAdapter<br>RAM for global variables,%,examples/Callbacks<br>flash,%,examples/Callbacks<br>RAM for global variables,%,examples/InputRotary<br>flash,%,examples/InputRotary<br>RAM for global variables,%,examples/IntFloatValues<br>flash,%,examples/IntFloatValues<br>RAM for global variables,%,examples/KeyboardAdapter<br>flash,%,examples/KeyboardAdapter<br>RAM for global variables,%,examples/List<br>flash,%,examples/List<br>RAM for global variables,%,examples/SimpleRotary<br>flash,%,examples/SimpleRotary<br>RAM for global variables,%,examples/SSD1803A_I2C<br>flash,%,examples/SSD1803A_I2C<br>RAM for global variables,%,examples/Widgets<br>flash,%,examples/Widgets<br>RAM for global variables,%,examples/UseByRef<br>flash,%,examples/UseByRef<br>RAM for global variables,%,examples/RTOS<br>flash,%,examples/RTOS<br>RAM for global variables,%
STMicroelectronics:stm32:GenF1,64,0.2,4,0.04,64,0.2,4,0.04,64,0.2,4,0.04,64,0.2,4,0.04,168,0.51,4,0.04,64,0.2,4,0.04,160,0.49,4,0.04,168,0.51,4,0.04,64,0.2,4,0.04,168,0.51,4,0.04,176,0.54,4,0.04
arduino:avr:uno,126,0.39,9,0.44,126,0.39,9,0.44,126,0.39,9,0.44,126,0.39,9,0.44,274,0.85,9,0.44,126,0.39,9,0.44,274,0.85,9,0.44,278,0.86,9,0.44,126,0.39,9,0.44,278,0.86,9,0.44,308,0.95,9,0.44,164,0.51,9,0.44
arduino:samd:mkr1000,64,0.02,4,0.01,64,0.02,4,0.01,64,0.02,4,0.01,64,0.02,4,0.01,176,0.07,4,0.01,64,0.02,4,0.01,176,0.07,4,0.01,176,0.07,4,0.01,64,0.02,4,0.01,176,0.07,4,0.01,216,0.08,4,0.01,,,,
esp32:esp32:esp32,64,0.0,0,0.0,64,0.0,8,0.0,64,0.0,0,0.0,64,0.0,0,0.0,184,0.01,0,0.0,64,0.0,8,0.0,184,0.01,8,0.0,192,0.01,0,0.0,64,0.0,0,0.0,176,0.01,8,0.0,212,0.02,8,0.0,84,0.01,0,0.0
esp8266:esp8266:huzzah,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,,,,

github-actions[bot] avatar Mar 26 '25 07:03 github-actions[bot]

Memory usage change @ b53022f719b2c7aab6729f64dbec992d2cbd8ea0

Board flash % RAM for global variables %
STMicroelectronics:stm32:GenF1 :small_red_triangle: +64 - +176 +0.2 - +0.54 :small_red_triangle: +4 - +4 +0.04 - +0.04
arduino:avr:uno :small_red_triangle: +126 - +308 +0.39 - +0.95 :small_red_triangle: +9 - +9 +0.44 - +0.44
arduino:samd:mkr1000 :small_red_triangle: +64 - +216 +0.02 - +0.08 :small_red_triangle: +4 - +4 +0.01 - +0.01
esp32:esp32:esp32 :small_red_triangle: +64 - +212 0.0 - +0.02 :small_red_triangle: 0 - +8 0.0 - 0.0
esp8266:esp8266:huzzah N/A N/A N/A N/A
Click for full report table
Board examples/Basic
flash
% examples/Basic
RAM for global variables
% examples/ButtonAdapter
flash
% examples/ButtonAdapter
RAM for global variables
% examples/Callbacks
flash
% examples/Callbacks
RAM for global variables
% examples/InputRotary
flash
% examples/InputRotary
RAM for global variables
% examples/IntFloatValues
flash
% examples/IntFloatValues
RAM for global variables
% examples/KeyboardAdapter
flash
% examples/KeyboardAdapter
RAM for global variables
% examples/List
flash
% examples/List
RAM for global variables
% examples/SimpleRotary
flash
% examples/SimpleRotary
RAM for global variables
% examples/SSD1803A_I2C
flash
% examples/SSD1803A_I2C
RAM for global variables
% examples/Widgets
flash
% examples/Widgets
RAM for global variables
% examples/UseByRef
flash
% examples/UseByRef
RAM for global variables
% examples/RTOS
flash
% examples/RTOS
RAM for global variables
%
STMicroelectronics:stm32:GenF1 64 0.2 4 0.04 64 0.2 4 0.04 64 0.2 4 0.04 64 0.2 4 0.04 168 0.51 4 0.04 64 0.2 4 0.04 160 0.49 4 0.04 168 0.51 4 0.04 64 0.2 4 0.04 168 0.51 4 0.04 176 0.54 4 0.04
arduino:avr:uno 126 0.39 9 0.44 126 0.39 9 0.44 126 0.39 9 0.44 126 0.39 9 0.44 274 0.85 9 0.44 126 0.39 9 0.44 274 0.85 9 0.44 278 0.86 9 0.44 126 0.39 9 0.44 278 0.86 9 0.44 308 0.95 9 0.44 164 0.51 9 0.44
arduino:samd:mkr1000 64 0.02 4 0.01 64 0.02 4 0.01 64 0.02 4 0.01 64 0.02 4 0.01 176 0.07 4 0.01 64 0.02 4 0.01 176 0.07 4 0.01 176 0.07 4 0.01 64 0.02 4 0.01 176 0.07 4 0.01 216 0.08 4 0.01
esp32:esp32:esp32 64 0.0 0 0.0 64 0.0 8 0.0 64 0.0 0 0.0 64 0.0 0 0.0 184 0.01 0 0.0 64 0.0 8 0.0 184 0.01 8 0.0 192 0.01 0 0.0 64 0.0 0 0.0 176 0.01 8 0.0 212 0.02 8 0.0 84 0.01 0 0.0
esp8266:esp8266:huzzah N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A
Click for full report CSV
Board,examples/Basic<br>flash,%,examples/Basic<br>RAM for global variables,%,examples/ButtonAdapter<br>flash,%,examples/ButtonAdapter<br>RAM for global variables,%,examples/Callbacks<br>flash,%,examples/Callbacks<br>RAM for global variables,%,examples/InputRotary<br>flash,%,examples/InputRotary<br>RAM for global variables,%,examples/IntFloatValues<br>flash,%,examples/IntFloatValues<br>RAM for global variables,%,examples/KeyboardAdapter<br>flash,%,examples/KeyboardAdapter<br>RAM for global variables,%,examples/List<br>flash,%,examples/List<br>RAM for global variables,%,examples/SimpleRotary<br>flash,%,examples/SimpleRotary<br>RAM for global variables,%,examples/SSD1803A_I2C<br>flash,%,examples/SSD1803A_I2C<br>RAM for global variables,%,examples/Widgets<br>flash,%,examples/Widgets<br>RAM for global variables,%,examples/UseByRef<br>flash,%,examples/UseByRef<br>RAM for global variables,%,examples/RTOS<br>flash,%,examples/RTOS<br>RAM for global variables,%
STMicroelectronics:stm32:GenF1,64,0.2,4,0.04,64,0.2,4,0.04,64,0.2,4,0.04,64,0.2,4,0.04,168,0.51,4,0.04,64,0.2,4,0.04,160,0.49,4,0.04,168,0.51,4,0.04,64,0.2,4,0.04,168,0.51,4,0.04,176,0.54,4,0.04
arduino:avr:uno,126,0.39,9,0.44,126,0.39,9,0.44,126,0.39,9,0.44,126,0.39,9,0.44,274,0.85,9,0.44,126,0.39,9,0.44,274,0.85,9,0.44,278,0.86,9,0.44,126,0.39,9,0.44,278,0.86,9,0.44,308,0.95,9,0.44,164,0.51,9,0.44
arduino:samd:mkr1000,64,0.02,4,0.01,64,0.02,4,0.01,64,0.02,4,0.01,64,0.02,4,0.01,176,0.07,4,0.01,64,0.02,4,0.01,176,0.07,4,0.01,176,0.07,4,0.01,64,0.02,4,0.01,176,0.07,4,0.01,216,0.08,4,0.01,,,,
esp32:esp32:esp32,64,0.0,0,0.0,64,0.0,8,0.0,64,0.0,0,0.0,64,0.0,0,0.0,184,0.01,0,0.0,64,0.0,8,0.0,184,0.01,8,0.0,192,0.01,0,0.0,64,0.0,0,0.0,176,0.01,8,0.0,212,0.02,8,0.0,84,0.01,0,0.0
esp8266:esp8266:huzzah,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,,,,

github-actions[bot] avatar Mar 27 '25 21:03 github-actions[bot]

@coderabbitai review

TBAMax avatar May 06 '25 18:05 TBAMax

✅ Actions performed

Review triggered.

Note: CodeRabbit is an incremental review system and does not re-review already reviewed commits. This command is applicable only when automatic reviews are paused.

coderabbitai[bot] avatar May 06 '25 18:05 coderabbitai[bot]

Memory usage change @ 1f9881e4047f65220cd351ad7d5578e84267cb08

Board flash % RAM for global variables %
STMicroelectronics:stm32:GenF1 :small_red_triangle: +64 - +108 +0.2 - +0.33 :small_red_triangle: +4 - +4 +0.04 - +0.04
arduino:avr:uno :small_red_triangle: +126 - +230 +0.39 - +0.71 :small_red_triangle: +9 - +9 +0.44 - +0.44
arduino:samd:mkr1000 :small_red_triangle: +64 - +116 +0.02 - +0.04 :small_red_triangle: +4 - +4 +0.01 - +0.01
esp32:esp32:esp32 :small_red_triangle: +64 - +100 0.0 - +0.01 :small_red_triangle: 0 - +8 0.0 - 0.0
esp8266:esp8266:huzzah N/A N/A N/A N/A
Click for full report table
Board examples/Basic
flash
% examples/Basic
RAM for global variables
% examples/ButtonAdapter
flash
% examples/ButtonAdapter
RAM for global variables
% examples/Callbacks
flash
% examples/Callbacks
RAM for global variables
% examples/InputRotary
flash
% examples/InputRotary
RAM for global variables
% examples/IntFloatValues
flash
% examples/IntFloatValues
RAM for global variables
% examples/KeyboardAdapter
flash
% examples/KeyboardAdapter
RAM for global variables
% examples/List
flash
% examples/List
RAM for global variables
% examples/SimpleRotary
flash
% examples/SimpleRotary
RAM for global variables
% examples/SSD1803A_I2C
flash
% examples/SSD1803A_I2C
RAM for global variables
% examples/UseByRef
flash
% examples/UseByRef
RAM for global variables
% examples/DynamicMenu
flash
% examples/DynamicMenu
RAM for global variables
% examples/Widgets
flash
% examples/Widgets
RAM for global variables
% examples/RTOS
flash
% examples/RTOS
RAM for global variables
%
STMicroelectronics:stm32:GenF1 64 0.2 4 0.04 64 0.2 4 0.04 64 0.2 4 0.04 64 0.2 4 0.04 108 0.33 4 0.04 64 0.2 4 0.04 108 0.33 4 0.04 108 0.33 4 0.04 64 0.2 4 0.04 104 0.32 4 0.04 64 0.2 4 0.04 108 0.33 4 0.04
arduino:avr:uno 126 0.39 9 0.44 126 0.39 9 0.44 126 0.39 9 0.44 126 0.39 9 0.44 202 0.63 9 0.44 126 0.39 9 0.44 202 0.63 9 0.44 202 0.63 9 0.44 126 0.39 9 0.44 230 0.71 9 0.44 126 0.39 9 0.44 202 0.63 9 0.44 154 0.48 9 0.44
arduino:samd:mkr1000 64 0.02 4 0.01 64 0.02 4 0.01 64 0.02 4 0.01 64 0.02 4 0.01 112 0.04 4 0.01 64 0.02 4 0.01 108 0.04 4 0.01 112 0.04 4 0.01 64 0.02 4 0.01 116 0.04 4 0.01 64 0.02 4 0.01 108 0.04 4 0.01
esp32:esp32:esp32 64 0.0 8 0.0 64 0.0 0 0.0 64 0.0 8 0.0 64 0.0 0 0.0 96 0.01 8 0.0 64 0.0 8 0.0 96 0.01 8 0.0 96 0.01 8 0.0 64 0.0 8 0.0 92 0.01 0 0.0 64 0.0 8 0.0 100 0.01 0 0.0 68 0.01 0 0.0
esp8266:esp8266:huzzah N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A
Click for full report CSV
Board,examples/Basic<br>flash,%,examples/Basic<br>RAM for global variables,%,examples/ButtonAdapter<br>flash,%,examples/ButtonAdapter<br>RAM for global variables,%,examples/Callbacks<br>flash,%,examples/Callbacks<br>RAM for global variables,%,examples/InputRotary<br>flash,%,examples/InputRotary<br>RAM for global variables,%,examples/IntFloatValues<br>flash,%,examples/IntFloatValues<br>RAM for global variables,%,examples/KeyboardAdapter<br>flash,%,examples/KeyboardAdapter<br>RAM for global variables,%,examples/List<br>flash,%,examples/List<br>RAM for global variables,%,examples/SimpleRotary<br>flash,%,examples/SimpleRotary<br>RAM for global variables,%,examples/SSD1803A_I2C<br>flash,%,examples/SSD1803A_I2C<br>RAM for global variables,%,examples/UseByRef<br>flash,%,examples/UseByRef<br>RAM for global variables,%,examples/DynamicMenu<br>flash,%,examples/DynamicMenu<br>RAM for global variables,%,examples/Widgets<br>flash,%,examples/Widgets<br>RAM for global variables,%,examples/RTOS<br>flash,%,examples/RTOS<br>RAM for global variables,%
STMicroelectronics:stm32:GenF1,64,0.2,4,0.04,64,0.2,4,0.04,64,0.2,4,0.04,64,0.2,4,0.04,108,0.33,4,0.04,64,0.2,4,0.04,108,0.33,4,0.04,108,0.33,4,0.04,64,0.2,4,0.04,104,0.32,4,0.04,64,0.2,4,0.04,108,0.33,4,0.04
arduino:avr:uno,126,0.39,9,0.44,126,0.39,9,0.44,126,0.39,9,0.44,126,0.39,9,0.44,202,0.63,9,0.44,126,0.39,9,0.44,202,0.63,9,0.44,202,0.63,9,0.44,126,0.39,9,0.44,230,0.71,9,0.44,126,0.39,9,0.44,202,0.63,9,0.44,154,0.48,9,0.44
arduino:samd:mkr1000,64,0.02,4,0.01,64,0.02,4,0.01,64,0.02,4,0.01,64,0.02,4,0.01,112,0.04,4,0.01,64,0.02,4,0.01,108,0.04,4,0.01,112,0.04,4,0.01,64,0.02,4,0.01,116,0.04,4,0.01,64,0.02,4,0.01,108,0.04,4,0.01,,,,
esp32:esp32:esp32,64,0.0,8,0.0,64,0.0,0,0.0,64,0.0,8,0.0,64,0.0,0,0.0,96,0.01,8,0.0,64,0.0,8,0.0,96,0.01,8,0.0,96,0.01,8,0.0,64,0.0,8,0.0,92,0.01,0,0.0,64,0.0,8,0.0,100,0.01,0,0.0,68,0.01,0,0.0
esp8266:esp8266:huzzah,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,,,,

github-actions[bot] avatar May 06 '25 20:05 github-actions[bot]

@TBAMax can you please fix the issues with this PR?

Please compile specifically these examples to ensure that your fix doesn't break any existing functionality.

SimpleInput CharsetInput

Ref https://lcdmenu.forntoh.dev/overview/items/input.html https://lcdmenu.forntoh.dev/overview/items/input-charset.html

forntoh avatar May 23 '25 16:05 forntoh

This PR is stale because it has been open 60 days with no activity. Remove stale label or comment or this will be closed in 10 days.

github-actions[bot] avatar Jul 23 '25 03:07 github-actions[bot]

This PR was closed because it has been stalled for 10 days with no activity.

github-actions[bot] avatar Aug 03 '25 03:08 github-actions[bot]