LcdMenu icon indicating copy to clipboard operation
LcdMenu copied to clipboard

Refactor callback types in menu items to use std::function for improved flexibility

Open forntoh opened this issue 10 months ago โ€ข 2 comments

Checklist

General Requirements

  • [x] I have kept this PR in draft until all the required tasks are completed.
  • [x] I have reviewed the contributing guidelines for this project.
  • [x] I have tagged this PR with breaking-change if it introduces a breaking change.
  • [x] I have checked that this PR does not introduce any breaking changes unless explicitly stated.
  • [x] I have checked that changes generate no new warnings.
  • [ ] 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.

Refactor/Enhancement

  • [x] This PR is a code refactor.
  • [ ] I have tagged this PR with enhancement.
  • [x] I have made changes to the code that improve readability/performance/maintainability.
  • [ ] I have added documentation for the changes if necessary.
  • [ ] I have generated and reviewed the documentation locally if necessary.

Summary by CodeRabbit

  • New Features

    • Introduced an ESP32 example with a menu-driven WiFi interface for scanning, connecting, and managing WiFi networks.
  • Improvements

    • Enhanced menu interfaces and user interactions across several example projects for a more robust and intuitive experience.
    • Updated CI workflows and dependency configurations to improve build consistency and platform support.
  • Chores

    • Streamlined project build settings and cleaned up internal callback mechanisms for increased type safety and maintainability.

forntoh avatar Apr 01 '25 14:04 forntoh

[!IMPORTANT]

Review skipped

Draft detected.

Please check the settings in the CodeRabbit UI or the .coderabbit.yaml file in this repository. To trigger a single review, invoke the @coderabbitai review command.

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.

๐Ÿ“ Walkthrough

"""

Walkthrough

The changes update the Arduino CI workflows and example sketches to improve dependency management and callback flexibility. In the CI workflows, a new repository ("ArxTypeTraits") is cloned and the library move command is adjusted with a target directory flag. The compilation configuration now includes modified sketch paths and newly added libraries. Multiple example files have their callback mechanisms updated by wrapping function calls in lambdas and changing parameter types (e.g., converting mutable character pointers to constant ones). A new ESP32 WiFi example is introduced, which implements WiFi scanning and connection management with an LCD menu interface. Additionally, many source files are refactored to replace raw function pointers with std::function, enhancing type safety and versatility across various widget components. Obsolete typedefs in utility headers have been removed, and the platformio.ini file has been updated with revised library dependencies.

Sequence Diagram(s)

sequenceDiagram
    participant CI as "CI Workflow"
    participant Git as "Git Repository"
    participant Shell as "Shell Executor"

    CI->>Git: Clone "ArxTypeTraits" repository
    Git-->>CI: Repository cloned
    CI->>Shell: Execute move command with "-t" flag for libraries
    Shell-->>CI: Libraries moved and organized
sequenceDiagram
    participant User as "User"
    participant Menu as "LCD Menu Interface"
    participant WiFi as "ESP32 WiFi Module"

    User->>Menu: Select "WiFi Networks" option
    Menu->>WiFi: Call startWifiScan()
    WiFi->>WiFi: Initiate asynchronous WiFi scan
    WiFi-->>Menu: Return "Scanning..." status
    loop Scan Check
        Menu->>WiFi: Call checkWifiScan()
        WiFi-->>Menu: Return network list or error
    end
    User->>Menu: Select a network and enter password
    Menu->>WiFi: Attempt connection to network
    WiFi-->>Menu: Return connection result
    Menu->>User: Display connection status

Possibly related PRs

  • forntoh/LcdMenu#251: Refactors ItemCommand callback handling from function pointers, related to callback type changes in this PR.
  • forntoh/LcdMenu#286: Modifies ItemToggle callback invocation order and UI refresh, related to callback handling improvements.

Suggested labels

enhancement, chore """

โœจ Finishing Touches
๐Ÿงช Generate unit tests
  • [ ] Create PR with unit tests
  • [ ] Post copyable unit tests in a comment
  • [ ] Commit unit tests in branch feat/use-std-functional

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 generate unit tests to generate unit tests for 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 Apr 01 '25 14:04 coderabbitai[bot]

Memory usage change @ 449019cef9807310a6f53df8ca5f5c8016bc2691

Board flash % RAM for global variables %
STMicroelectronics:stm32:GenF1 :small_red_triangle: 0 - +2116 0.0 - +6.46 0 - 0 0.0 - 0.0
arduino:avr:uno :small_red_triangle: 0 - +2368 0.0 - +7.34 :small_red_triangle: 0 - +168 0.0 - +8.2
arduino:samd:mkr1000 :small_red_triangle: 0 - +1808 0.0 - +0.69 :small_red_triangle: 0 - +368 0.0 - +1.12
esp32:esp32:esp32 :small_red_triangle: 0 - +5280 0.0 - +0.4 0 - 0 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/RTOS
flash
% examples/RTOS
RAM for global variables
% examples/Widgets
flash
% examples/Widgets
RAM for global variables
% examples/ESP32WiFi
flash
% examples/ESP32WiFi
RAM for global variables
%
STMicroelectronics:stm32:GenF1 0 0.0 0 0.0 184 0.56 0 0.0 184 0.56 0 0.0 1144 3.49 0 0.0 744 2.27 0 0.0 996 3.04 0 0.0 488 1.49 0 0.0 860 2.62 0 0.0 0 0.0 0 0.0 2116 6.46 0 0.0 260 0.79 0 0.0
arduino:avr:uno 0 0.0 0 0.0 232 0.72 14 0.68 232 0.72 14 0.68 1386 4.3 40 1.95 836 2.59 56 2.73 1190 3.69 26 1.27 556 1.72 42 2.05 950 2.95 70 3.42 0 0.0 0 0.0 2216 6.87 168 8.2 480 1.49 56 2.73 438 1.36 42 2.05 2368 7.34 140 6.84
arduino:samd:mkr1000 0 0.0 0 0.0 188 0.07 0 0.0 184 0.07 0 0.0 1640 0.63 368 1.12 684 0.26 0 0.0 1504 0.57 368 1.12 424 0.16 0 0.0 800 0.31 0 0.0 0 0.0 0 0.0 1808 0.69 0 0.0 216 0.08 0 0.0 1720 0.66 0 0.0
esp32:esp32:esp32 0 0.0 0 0.0 588 0.04 0 0.0 580 0.04 0 0.0 1736 0.13 0 0.0 2188 0.17 0 0.0 1276 0.1 0 0.0 1320 0.1 0 0.0 2612 0.2 0 0.0 0 0.0 0 0.0 5048 0.39 0 0.0 632 0.05 0 0.0 680 0.05 0 0.0 5280 0.4 0 0.0 N/A N/A N/A N/A
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/RTOS<br>flash,%,examples/RTOS<br>RAM for global variables,%,examples/Widgets<br>flash,%,examples/Widgets<br>RAM for global variables,%,examples/ESP32WiFi<br>flash,%,examples/ESP32WiFi<br>RAM for global variables,%
STMicroelectronics:stm32:GenF1,0,0.0,0,0.0,184,0.56,0,0.0,184,0.56,0,0.0,1144,3.49,0,0.0,744,2.27,0,0.0,996,3.04,0,0.0,488,1.49,0,0.0,860,2.62,0,0.0,0,0.0,0,0.0,2116,6.46,0,0.0,260,0.79,0,0.0
arduino:avr:uno,0,0.0,0,0.0,232,0.72,14,0.68,232,0.72,14,0.68,1386,4.3,40,1.95,836,2.59,56,2.73,1190,3.69,26,1.27,556,1.72,42,2.05,950,2.95,70,3.42,0,0.0,0,0.0,2216,6.87,168,8.2,480,1.49,56,2.73,438,1.36,42,2.05,2368,7.34,140,6.84
arduino:samd:mkr1000,0,0.0,0,0.0,188,0.07,0,0.0,184,0.07,0,0.0,1640,0.63,368,1.12,684,0.26,0,0.0,1504,0.57,368,1.12,424,0.16,0,0.0,800,0.31,0,0.0,0,0.0,0,0.0,1808,0.69,0,0.0,216,0.08,0,0.0,,,,,1720,0.66,0,0.0
esp32:esp32:esp32,0,0.0,0,0.0,588,0.04,0,0.0,580,0.04,0,0.0,1736,0.13,0,0.0,2188,0.17,0,0.0,1276,0.1,0,0.0,1320,0.1,0,0.0,2612,0.2,0,0.0,0,0.0,0,0.0,5048,0.39,0,0.0,632,0.05,0,0.0,680,0.05,0,0.0,5280,0.4,0,0.0,N/A,N/A,N/A,N/A
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 Apr 10 '25 19:04 github-actions[bot]

Memory usage change @ 47f0d5e4fcb928ee90115ae071374e9f9f0a0463

Board flash % RAM for global variables %
STMicroelectronics:stm32:GenF1 :small_red_triangle: 0 - +2116 0.0 - +6.46 0 - 0 0.0 - 0.0
arduino:avr:uno :small_red_triangle: 0 - +2372 0.0 - +7.35 :small_red_triangle: 0 - +168 0.0 - +8.2
arduino:samd:mkr1000 :small_red_triangle: 0 - +1808 0.0 - +0.69 :small_red_triangle: 0 - +368 0.0 - +1.12
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/RTOS
flash
% examples/RTOS
RAM for global variables
% examples/Widgets
flash
% examples/Widgets
RAM for global variables
%
STMicroelectronics:stm32:GenF1 0 0.0 0 0.0 184 0.56 0 0.0 184 0.56 0 0.0 1144 3.49 0 0.0 744 2.27 0 0.0 996 3.04 0 0.0 488 1.49 0 0.0 860 2.62 0 0.0 0 0.0 0 0.0 2116 6.46 0 0.0 260 0.79 0 0.0
arduino:avr:uno 0 0.0 0 0.0 232 0.72 14 0.68 232 0.72 14 0.68 1386 4.3 40 1.95 836 2.59 56 2.73 1190 3.69 26 1.27 556 1.72 42 2.05 950 2.95 70 3.42 0 0.0 0 0.0 2220 6.88 168 8.2 480 1.49 56 2.73 438 1.36 42 2.05 2372 7.35 140 6.84
arduino:samd:mkr1000 0 0.0 0 0.0 188 0.07 0 0.0 184 0.07 0 0.0 1640 0.63 368 1.12 684 0.26 0 0.0 1504 0.57 368 1.12 424 0.16 0 0.0 800 0.31 0 0.0 0 0.0 0 0.0 1808 0.69 0 0.0 216 0.08 0 0.0 1716 0.65 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/RTOS<br>flash,%,examples/RTOS<br>RAM for global variables,%,examples/Widgets<br>flash,%,examples/Widgets<br>RAM for global variables,%
STMicroelectronics:stm32:GenF1,0,0.0,0,0.0,184,0.56,0,0.0,184,0.56,0,0.0,1144,3.49,0,0.0,744,2.27,0,0.0,996,3.04,0,0.0,488,1.49,0,0.0,860,2.62,0,0.0,0,0.0,0,0.0,2116,6.46,0,0.0,260,0.79,0,0.0
arduino:avr:uno,0,0.0,0,0.0,232,0.72,14,0.68,232,0.72,14,0.68,1386,4.3,40,1.95,836,2.59,56,2.73,1190,3.69,26,1.27,556,1.72,42,2.05,950,2.95,70,3.42,0,0.0,0,0.0,2220,6.88,168,8.2,480,1.49,56,2.73,438,1.36,42,2.05,2372,7.35,140,6.84
arduino:samd:mkr1000,0,0.0,0,0.0,188,0.07,0,0.0,184,0.07,0,0.0,1640,0.63,368,1.12,684,0.26,0,0.0,1504,0.57,368,1.12,424,0.16,0,0.0,800,0.31,0,0.0,0,0.0,0,0.0,1808,0.69,0,0.0,216,0.08,0,0.0,,,,,1716,0.65,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 04 '25 09:05 github-actions[bot]

Memory usage change @ 42fe55a71c3e72f87d229fc082ccd611e2fbc229

Board flash % RAM for global variables %
STMicroelectronics:stm32:GenF1 :small_red_triangle: 0 - +2116 0.0 - +6.46 0 - 0 0.0 - 0.0
arduino:avr:uno :small_red_triangle: 0 - +2372 0.0 - +7.35 :small_red_triangle: 0 - +168 0.0 - +8.2
arduino:samd:mkr1000 :small_red_triangle: 0 - +1808 0.0 - +0.69 :small_red_triangle: 0 - +368 0.0 - +1.12
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/RTOS
flash
% examples/RTOS
RAM for global variables
% examples/Widgets
flash
% examples/Widgets
RAM for global variables
%
STMicroelectronics:stm32:GenF1 0 0.0 0 0.0 184 0.56 0 0.0 184 0.56 0 0.0 1144 3.49 0 0.0 744 2.27 0 0.0 996 3.04 0 0.0 488 1.49 0 0.0 860 2.62 0 0.0 0 0.0 0 0.0 2116 6.46 0 0.0 260 0.79 0 0.0
arduino:avr:uno 0 0.0 0 0.0 232 0.72 14 0.68 232 0.72 14 0.68 1386 4.3 40 1.95 836 2.59 56 2.73 1190 3.69 26 1.27 556 1.72 42 2.05 950 2.95 70 3.42 0 0.0 0 0.0 2220 6.88 168 8.2 480 1.49 56 2.73 438 1.36 42 2.05 2372 7.35 140 6.84
arduino:samd:mkr1000 0 0.0 0 0.0 188 0.07 0 0.0 184 0.07 0 0.0 1640 0.63 368 1.12 684 0.26 0 0.0 1504 0.57 368 1.12 424 0.16 0 0.0 800 0.31 0 0.0 0 0.0 0 0.0 1808 0.69 0 0.0 216 0.08 0 0.0 1716 0.65 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/RTOS<br>flash,%,examples/RTOS<br>RAM for global variables,%,examples/Widgets<br>flash,%,examples/Widgets<br>RAM for global variables,%
STMicroelectronics:stm32:GenF1,0,0.0,0,0.0,184,0.56,0,0.0,184,0.56,0,0.0,1144,3.49,0,0.0,744,2.27,0,0.0,996,3.04,0,0.0,488,1.49,0,0.0,860,2.62,0,0.0,0,0.0,0,0.0,2116,6.46,0,0.0,260,0.79,0,0.0
arduino:avr:uno,0,0.0,0,0.0,232,0.72,14,0.68,232,0.72,14,0.68,1386,4.3,40,1.95,836,2.59,56,2.73,1190,3.69,26,1.27,556,1.72,42,2.05,950,2.95,70,3.42,0,0.0,0,0.0,2220,6.88,168,8.2,480,1.49,56,2.73,438,1.36,42,2.05,2372,7.35,140,6.84
arduino:samd:mkr1000,0,0.0,0,0.0,188,0.07,0,0.0,184,0.07,0,0.0,1640,0.63,368,1.12,684,0.26,0,0.0,1504,0.57,368,1.12,424,0.16,0,0.0,800,0.31,0,0.0,0,0.0,0,0.0,1808,0.69,0,0.0,216,0.08,0,0.0,,,,,1716,0.65,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 23 '25 17:05 github-actions[bot]

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 Sep 22 '25 02:09 github-actions[bot]

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

github-actions[bot] avatar Oct 03 '25 02:10 github-actions[bot]