Skip to content
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

Fix up a few more usermods #4601

Closed
wants to merge 13 commits into from
Closed

Conversation

willmmiles
Copy link
Member

@willmmiles willmmiles commented Mar 18, 2025

Fix up some more usermods that I missed in #4480.

Summary by CodeRabbit

  • Documentation
    • Streamlined configuration instructions to simplify setup by eliminating obsolete dependency references.
  • Refactor
    • Updated internal logging labels for improved clarity.
    • Revised numeric precision settings for enhanced range.
    • Refined JSON processing in light control.
    • Simplified preset management and standardized identification in the word clock module.
  • New Features
    • Introduced new usermod classes for enhanced functionality, including BH1750 light sensor and four-line display management.
  • Bug Fixes
    • Corrected naming conventions for debug messages to improve consistency and clarity.
  • Chores
    • Added setup scripts for managing usermod dependencies in the build process.

I've just assigned an arbitrary ID number.  The ID system should
get removed entirely; we don't want to have to change a base
system header to add each module.
Rename a macro that unfortunately collides with the ESP32 platform.
This allows re-enabling this usermod.
The String constructors are ambiguous with uint8_ts.
@willmmiles willmmiles self-assigned this Mar 18, 2025
Copy link

coderabbitai bot commented Mar 18, 2025

Walkthrough

This pull request updates several usermod files across different modules. In the BME68X module, debug message macros were renamed, and the file header comment was corrected. In the MAX17048 module, data types for voltage and percent decimals were changed, and the README was revised to replace library dependency instructions with a custom configuration directive. The HttpPullLightControl module now uses a pointer for JSON deserialization, and the Word Clock Matrix module features a variable rename, a simplified preset method, and an updated ID return value. Significant modifications were made to the BH1750 module, including the introduction of a new class and restructuring of methods for MQTT integration. The SN_Photoresistor module also saw the addition of a new class and changes in how sensor readings are managed. Several other modules introduced new files, modified existing configurations, and updated their JSON structures.

Changes

File Change Summary
usermods/.../BME68X_v2/BME68X_v2.cpp Renamed debug macros (OK → OK_MSG, FAIL → FAIL_MSG, WARN → WARN_MSG, DONE → DONE_MSG) and updated the file header comment with the corrected filename.
usermods/.../MAX17048_v2/MAX17048_v2.cpp,
usermods/.../MAX17048_v2/readme.md
MAX17048 Module: Changed VoltageDecimals and PercentDecimals from uint8_t to unsigned in the code; updated README by removing specific library dependencies and introducing a custom_usermods configuration directive.
usermods/.../usermod_v2_HttpPullLightControl/usermod_v2_HttpPullLightControl.cpp Modified JSON deserialization in handleResponse by replacing a local document with a pointer dereference (pDoc).
usermods/.../word-clock-matrix/word-clock-matrix.cpp Renamed variable seg to text_seg, removed the second parameter from savePreset, and changed getId() to return a hardcoded value (500) instead of a macro.
usermods/.../BH1750_v2/BH1750_v2.cpp,
usermods/.../BH1750_v2/BH1750_v2.h
BH1750 Module: Introduced a new class Usermod_BH1750, restructured methods for MQTT integration, added new methods, and removed preprocessor definitions for parameters.
usermods/.../SN_Photoresistor/SN_Photoresistor.cpp,
usermods/.../SN_Photoresistor/SN_Photoresistor.h
SN_Photoresistor Module: Added a new class Usermod_SN_Photoresistor, updated methods for luminance measurement, and removed hardcoded values in favor of dynamic management.
usermods/.../seven_segment_display_reloaded/library.json Added a new key-value pair under a "build" object specifying an additional script to be executed during the build process.
usermods/.../seven_segment_display_reloaded/setup_deps.py Introduced a new file for configuring project dependencies based on user-modified settings.
usermods/.../usermod_v2_brightness_follow_sun/library.json Created a new JSON file specifying the module's name.
usermods/.../usermod_v2_four_line_display_ALT/library.json Introduced a new JSON file specifying the module's name and its dependencies.
usermods/.../usermod_v2_four_line_display_ALT/platformio_override.sample.ini Updated environment settings and build configurations for the ESP32 platform.
wled00/cfg.cpp,
wled00/fcn_declare.h,
wled00/improv.cpp,
wled00/presets.cpp,
wled00/set.cpp,
wled00/wled.cpp,
wled00/wled_server.cpp
Updated configuration serialization methods, renamed variables related to configuration saving, and improved logging functionality.
wled00/json.cpp Transitioned from using defined constants for JSON path identifiers to an enumerated type (enum class json_target).
usermods/.../usermod_v2_rotary_encoder_ui_ALT/library.json,
usermods/.../usermod_v2_rotary_encoder_ui_ALT/platformio_override.sample.ini,
usermods/.../usermod_v2_rotary_encoder_ui_ALT/readme.md,
usermods/.../usermod_v2_rotary_encoder_ui_ALT/setup_deps.py
Updated naming conventions, modified configuration options, and introduced a new setup dependencies script.
✨ Finishing Touches
  • 📝 Generate Docstrings

🪧 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.
    • Generate unit testing code for this file.
    • 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 generate unit testing code for this file.
    • @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 generate unit testing code.
    • @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.

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 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.

Copy link

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 0

🧹 Nitpick comments (2)
usermods/MAX17048_v2/readme.md (1)

17-17: Inconsistency in example configuration.

The example shows adding AHT10 to custom_usermods but the usermod being documented is MAX17048_v2. This could be confusing for users.

- custom_usermods = ${env:d1_mini.custom_usermods} AHT10
+ custom_usermods = ${env:d1_mini.custom_usermods} MAX17048_v2
usermods/BME68X_v2/BME68X_v2.cpp (1)

1094-1095: Suggestion: Improve DEBUG_PRINTF Formatting
The DEBUG_PRINTF statement in saveState() concatenates string literals with the OK_MSG macro directly, which might lead to missing spacing in the output. Consider revising it for clarity. For example:

-    DEBUG_PRINTF("(saved %d times)" OK_MSG "\n", stateUpdateCounter);
+    DEBUG_PRINTF("(saved %d times %s)\n", stateUpdateCounter, OK_MSG);

This adjustment ensures a clear separation between the saved count message and the success indicator.

📜 Review details

Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between a70bfa0 and 95363ff.

📒 Files selected for processing (5)
  • usermods/BME68X_v2/BME68X_v2.cpp (12 hunks)
  • usermods/MAX17048_v2/MAX17048_v2.cpp (1 hunks)
  • usermods/MAX17048_v2/readme.md (1 hunks)
  • usermods/usermod_v2_HttpPullLightControl/usermod_v2_HttpPullLightControl.cpp (1 hunks)
  • usermods/word-clock-matrix/word-clock-matrix.cpp (3 hunks)
🧰 Additional context used
🪛 LanguageTool
usermods/MAX17048_v2/readme.md

[uncategorized] ~13-~13: This verb may not be in the correct form. Consider using a different form for this context.
Context: ...enable, compile with USERMOD_MAX17048 define in the build_flags (e.g. in `platformio...

(AI_EN_LECTOR_REPLACEMENT_VERB_FORM)

⏰ Context from checks skipped due to timeout of 90000ms (1)
  • GitHub Check: wled_build / Build Enviornments (usermods)
🔇 Additional comments (16)
usermods/MAX17048_v2/readme.md (1)

12-12: Simplified configuration approach.

You've changed the configuration to use custom_usermods instead of requiring external library dependencies, which streamlines the setup process for users.

usermods/usermod_v2_HttpPullLightControl/usermod_v2_HttpPullLightControl.cpp (1)

300-303:

✅ Verification successful

Switched to pointer for JSON document.

The code now uses a dereferenced pointer *pDoc for JSON operations instead of a local variable. This change suggests the JSON document is now being managed elsewhere, likely improving memory efficiency.


🏁 Script executed:

#!/bin/bash
# Check if pDoc is properly declared elsewhere in the file
rg -A 2 -B 2 "JsonDocument\s+\*pDoc" --type cpp

Length of output: 541


Approved: Global JSON document pointer verified

The usage of *pDoc is correct as the pointer is declared globally in wled00/wled.h and initialized appropriately based on the platform. The changes improve memory management, and no further modifications are needed.

usermods/word-clock-matrix/word-clock-matrix.cpp (3)

39-40: Improved variable naming for clarity.

Renaming from seg to text_seg better clarifies the variable's purpose as representing text segments.


70-70:

✅ Verification successful

Method signature changed to simplify calls.

The savePreset method now takes only one parameter instead of two, simplifying the API.


🏁 Script executed:

#!/bin/bash
# Check the declaration of savePreset method and other calls to it
rg "savePreset\(" --type cpp usermods/word-clock-matrix

Length of output: 126


Simplified savePreset API Usage Verified
The savePreset call in usermods/word-clock-matrix/word-clock-matrix.cpp now correctly uses a single parameter (savePreset(13)), which matches the updated one-parameter method signature. No additional adjustments are needed.


332-332:

❓ Verification inconclusive

Changed usermod ID from constant to hardcoded value.

The ID has been changed from using a constant USERMOD_ID_WORD_CLOCK_MATRIX to a hardcoded value 500. This could potentially cause conflicts if another usermod uses the same ID.


🏁 Script executed:

#!/bin/bash
# Check if other usermods use ID 500 or if there's a constant definition
rg "return\s+500" --type cpp usermods
rg "USERMOD_ID_WORD_CLOCK_MATRIX" --type cpp
# Check if there's a usermod ID registry or documentation
rg "usermod\s+id" --type cpp

Length of output: 182


Action Required: Verify Unique Usermod ID Implementation

The commit changes the usermod ID in usermods/word-clock-matrix/word-clock-matrix.cpp (line 332) to a hardcoded value (500) instead of using the previously defined constant (USERMOD_ID_WORD_CLOCK_MATRIX). While our grep searches did not uncover any duplicate usage or references to the constant elsewhere, we couldn’t conclusively verify that no other usermod inadvertently uses 500. Please double-check the repository (or related documentation) to ensure that this hardcoded value does not conflict with IDs assigned to other usermods. If available, consider defining and using a centralized constant to mitigate future risks.

usermods/MAX17048_v2/MAX17048_v2.cpp (1)

38-39: Changed variable types from uint8_t to unsigned.

The data types for VoltageDecimals and PercentDecimals have been changed from uint8_t to unsigned. This modification could potentially allow for larger values, although the practical impact is likely minimal as these represent decimal places.

Both types are unsigned integers, but unsigned is platform-dependent while uint8_t is explicitly 8 bits. Since these variables are used for decimal places (typically small values), the larger range of unsigned isn't necessary but doesn't harm the functionality.

usermods/BME68X_v2/BME68X_v2.cpp (10)

2-2: Correct File Header Updated
The file header now correctly references the implementation file (usermod_BMW68X.cpp) rather than the header file. This update improves documentation accuracy.


36-39: Renamed Debug Message Macros for Consistency
The debug message macros have been updated to use OK_MSG, FAIL_MSG, WARN_MSG, and DONE_MSG consistently. This change helps standardize logging output throughout the module.


331-331: Using FAIL_MSG for I2C Error Reporting
At line 331 the error message now appends FAIL_MSG when I2C is not activated. This ensures that any failure is logged with the standardized error message format.


355-355: Uniform Success Messaging in Setup
The successful initialization message now uses DONE_MSG (prefixed by INFO_COLUMN) at line 355 to provide consistent feedback.


1028-1034: Standardized Messaging for BSEC Status Errors/Warnings
Within checkIaqSensorStatus(), the branches handling iaqSensor.bsecStatus now append either an error code (using FAIL_MSG) or a warning code (using WARN_MSG). This ensures that error conditions are clearly and uniformly logged.


1040-1054: Uniform Debug Logging for BME68X Sensor Status
In the section checking iaqSensor.bme68xStatus, the revised code uses FAIL_MSG for error conditions, WARN_MSG for warnings, and OK_MSG when everything is operating normally. This uniform approach enhances consistency and eases troubleshooting.


1064-1072: Improved Calibration File Logging in loadState()
The loadState() function now logs the status of opening and reading the calibration file using FAIL_MSG and OK_MSG. This provides consistent and clear feedback during file I/O operations.


753-753: Consistent Confirmation in addToConfig()
At the end of addToConfig(), the use of DEBUG_PRINTLN(F(OK_MSG)); confirms that the configuration content was created successfully, maintaining a uniform logging style.


834-834: Clear Completion Log in readFromConfig()
Printing DEBUG_PRINTLN(F(OK_MSG)); at line 834 clearly signals the successful reading of configuration values and aligns with the overall debug macro usage.


848-852: Consistent Feedback for Calibration File Deletion
Within the calibration file deletion branch in readFromConfig(), the use of DEBUG_PRINTLN(F(OK_MSG)); on success and DEBUG_PRINTLN(F(FAIL_MSG)); on failure ensures that file deletion outcomes are logged uniformly.

Copy link

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 0

🧹 Nitpick comments (2)
usermods/MAX17048_v2/readme.md (2)

12-12: Clarify the Compilation Directive Update

The newly added instruction clearly directs users to add "MAX17048_v2" to the platformio.ini environment's custom_usermods for the build. Ensure that it’s evident that this entry should be appended rather than replacing any existing custom usermods (as demonstrated later in the example).


17-17: Validate the Custom_usermods Formatting

The updated line

custom_usermods = ${env:d1_mini.custom_usermods} MAX17048_v2

correctly extends the existing custom_usermods setting with MAX17048_v2. Please double-check that using a space as the delimiter meets the expected format for your project's PlatformIO configuration. A comma or another form of delimiter might be required in some environments.

📜 Review details

Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 95363ff and ce6d2f5.

📒 Files selected for processing (1)
  • usermods/MAX17048_v2/readme.md (1 hunks)
🧰 Additional context used
🪛 LanguageTool
usermods/MAX17048_v2/readme.md

[uncategorized] ~13-~13: This verb may not be in the correct form. Consider using a different form for this context.
Context: ...enable, compile with USERMOD_MAX17048 define in the build_flags (e.g. in `platformio...

(AI_EN_LECTOR_REPLACEMENT_VERB_FORM)

Get this usermod to build, and restore the interconnect with its
partner usermod_v2_rotary_encoder_ui_ALT.
@blazoncek
Copy link
Collaborator

IMO there are far too many unmaintained (and probably non-functioning) usermods that would be best removed.

Fix up the cross module binding for
usermods/seven_segment_display_reloaded.  This requires splitting off
headers for BH1750_v2 and SN_Photoresistor.
When debugging, print each usermod's ID as it's loaded.
Break the actual JSON assembly apart from the file writing code.  This
permits calling it in other contexts, allowing us to pull the live
config data even if the filesystem is out of date.
Add a new JSON out target to pull the live config data and use that for
the usermod settings page.  Should fix issues with outdated contents.
@willmmiles willmmiles marked this pull request as draft March 22, 2025 16:54
Copy link

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 3

🧹 Nitpick comments (12)
usermods/seven_segment_display_reloaded/seven_segment_display_reloaded.cpp (1)

412-438: Well-implemented automatic brightness control.

This code effectively integrates with either light sensor type when available, using their readings to automatically adjust display brightness. The conditional compilation ensures clean integration without redundant code.

The debug message in the BH1750 section (line 431) provides helpful information for troubleshooting that isn't present in the SN_Photoresistor section. For consistency, consider adding similar debug output to the SN_Photoresistor section as well.

 if (ptr != nullptr) {
   uint16_t lux = ptr->getLastLDRValue();
   uint16_t brightness = map(lux, 0, 1000, umSSDRBrightnessMin, umSSDRBrightnessMax);
   if (bri != brightness) {
+    DEBUG_PRINTF("Adjusting brightness based on LDR value: %d, new brightness: %d\n", lux, brightness);
     bri = brightness;
     stateUpdated(1);
   }
 }
usermods/usermod_v2_rotary_encoder_ui_ALT/platformio_override.sample.ini (1)

4-6: Validate environment extension.
Extending env:esp32dev_V4 and appending the rotary_encoder_ui_ALT usermod ensures the environment inherits all required flags. Double-check that env:esp32dev_V4 includes the correct compiler/linker flags for the rotary encoder functionality.

Consider documenting the added usermod in a comment or README so new maintainers can quickly identify the purpose and dependencies of this environment.

Also applies to: 8-8

usermods/BH1750_v2/BH1750_v2.h (1)

10-28: Measurement interval configuration.
Defining flexible min/max intervals (500ms to 10s) along with an initial delay (10s) is a good balance of configurability. Ensure that read frequencies are not too frequent for the BH1750 sensor or your application’s performance constraints. Also verify that the offset logic meets your reporting threshold requirements.

Consider adding a brief doc comment indicating typical recommended intervals and guidelines for offset adjustments to help future maintainers.

usermods/SN_Photoresistor/SN_Photoresistor.h (1)

45-47: Typo in comment referencing temperature rather than luminance
This comment incorrectly references getTemperature instead of luminance or photoresistor reading, suggesting leftover text from another sensor module.

-  // flag to indicate we have finished the first getTemperature call
+  // flag to indicate we have finished the first luminance reading
usermods/SN_Photoresistor/SN_Photoresistor.cpp (3)

9-12: Validate sensor bounds more thoroughly
While checkBoundSensor checks if a reading differs by at least maxDiff or if the old value was NaN, it doesn’t handle all edge cases. If your sensor occasionally returns spurious large values, consider additional validation or error tolerance to avoid unstable results.


49-51: Check offset logic usage
You are applying checkBoundSensor(currentLDRValue, lastLDRValue, offset). Ensure offset is scaled consistently with your sensor values (lux?). If your typical readings could be in the hundreds or thousands, an offset of 5 might be too small or too large.


122-122: Potential confusion in disabled logic
Using !(top[FPSTR(_enabled)] | !disabled); is readable in Arduino JSON syntax but can be confusing. Consider assigning the JSON boolean to a local variable first or using clearer structures so future maintainers can quickly understand it.

-  disabled = !(top[FPSTR(_enabled)] | !disabled);
+  bool enabledOption = top[FPSTR(_enabled)] | !disabled;
+  disabled = !enabledOption;
usermods/usermod_v2_four_line_display_ALT/usermod_v2_four_line_display.h (5)

7-10: Verify ESP32 threading implications.
Defining FLD_ESP32_USE_THREADS may introduce concurrency issues if other parts of the system also rely on heavy tasks or tight deadlines. Ensure that essential tasks (e.g., LED updates) are not delayed.


31-37: Clarify default display configuration.
The conditional logic sets different defaults for FLD_TYPE. It might be more transparent to explicitly define a user-facing comment that clarifies each display fallback for both I2C and SPI modes.


51-62: Use consistent naming for display enums.
The DisplayType enum lists device models (e.g., SSD1306_64) alongside brand-based descriptions (e.g., SH1106). To avoid confusion, consider a consistent naming scheme or applying DISPLAYTYPE_ prefixes for clarity.


128-140: Promote user-friendly messages.
Storing string constants in _name, _enabled, _contrast, etc., is good for memory usage. For user-friendliness, consider clarifying or localizing these messages (e.g., “Contrast Level” instead of just “contrast”).


141-178: Comment on specialized display knowledge.
Lines 141-149 reference certain display constructors and mention checking the gallery or wiki. This is helpful but might be better placed in an external doc or README, linked from within the code, to prevent code clutter.

📜 Review details

Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between ce6d2f5 and 87cb617.

📒 Files selected for processing (33)
  • usermods/BH1750_v2/BH1750_v2.cpp (1 hunks)
  • usermods/BH1750_v2/BH1750_v2.h (1 hunks)
  • usermods/SN_Photoresistor/SN_Photoresistor.cpp (1 hunks)
  • usermods/SN_Photoresistor/SN_Photoresistor.h (1 hunks)
  • usermods/SN_Photoresistor/usermods_list.cpp (0 hunks)
  • usermods/seven_segment_display_reloaded/library.json (1 hunks)
  • usermods/seven_segment_display_reloaded/setup_deps.py (1 hunks)
  • usermods/seven_segment_display_reloaded/seven_segment_display_reloaded.cpp (1 hunks)
  • usermods/usermod_v2_brightness_follow_sun/library.json (1 hunks)
  • usermods/usermod_v2_brightness_follow_sun/usermod_v2_brightness_follow_sun.cpp (1 hunks)
  • usermods/usermod_v2_four_line_display_ALT/4LD_wled_fonts.h (1 hunks)
  • usermods/usermod_v2_four_line_display_ALT/library.json (1 hunks)
  • usermods/usermod_v2_four_line_display_ALT/library.json.disabled (0 hunks)
  • usermods/usermod_v2_four_line_display_ALT/platformio_override.sample.ini (1 hunks)
  • usermods/usermod_v2_four_line_display_ALT/usermod_v2_four_line_display.h (1 hunks)
  • usermods/usermod_v2_four_line_display_ALT/usermod_v2_four_line_display_ALT.cpp (2 hunks)
  • usermods/usermod_v2_rotary_encoder_ui_ALT/library.json (1 hunks)
  • usermods/usermod_v2_rotary_encoder_ui_ALT/platformio_override.sample.ini (1 hunks)
  • usermods/usermod_v2_rotary_encoder_ui_ALT/readme.md (0 hunks)
  • usermods/usermod_v2_rotary_encoder_ui_ALT/setup_deps.py (1 hunks)
  • usermods/usermod_v2_rotary_encoder_ui_ALT/usermod_v2_rotary_encoder_ui_ALT.cpp (1 hunks)
  • wled00/cfg.cpp (3 hunks)
  • wled00/data/settings_um.htm (1 hunks)
  • wled00/dmx_input.cpp (2 hunks)
  • wled00/fcn_declare.h (1 hunks)
  • wled00/improv.cpp (1 hunks)
  • wled00/json.cpp (2 hunks)
  • wled00/presets.cpp (1 hunks)
  • wled00/set.cpp (1 hunks)
  • wled00/um_manager.cpp (1 hunks)
  • wled00/wled.cpp (3 hunks)
  • wled00/wled.h (1 hunks)
  • wled00/wled_server.cpp (1 hunks)
💤 Files with no reviewable changes (3)
  • usermods/usermod_v2_four_line_display_ALT/library.json.disabled
  • usermods/SN_Photoresistor/usermods_list.cpp
  • usermods/usermod_v2_rotary_encoder_ui_ALT/readme.md
✅ Files skipped from review due to trivial changes (4)
  • usermods/usermod_v2_four_line_display_ALT/4LD_wled_fonts.h
  • usermods/usermod_v2_four_line_display_ALT/library.json
  • usermods/usermod_v2_brightness_follow_sun/library.json
  • wled00/set.cpp
🧰 Additional context used
🧬 Code Definitions (6)
wled00/improv.cpp (2)
wled00/fcn_declare.h (1) (1)
  • serializeConfigToFS (31-31)
wled00/cfg.cpp (2) (2)
  • serializeConfigToFS (691-708)
  • serializeConfigToFS (691-691)
wled00/um_manager.cpp (2)
wled00/wled.cpp (2) (2)
  • setup (312-528)
  • setup (312-312)
wled00/fcn_declare.h (1) (1)
  • setup (454-454)
wled00/wled.cpp (3)
wled00/fcn_declare.h (2) (2)
  • serializeConfigToFS (31-31)
  • getModCount (472-472)
wled00/cfg.cpp (2) (2)
  • serializeConfigToFS (691-708)
  • serializeConfigToFS (691-691)
wled00/um_manager.cpp (2) (2)
  • getModCount (85-85)
  • getModCount (85-85)
wled00/cfg.cpp (1)
wled00/fcn_declare.h (3) (3)
  • serializeConfigToFS (31-31)
  • serializeConfig (30-30)
  • releaseJSONBufferLock (504-504)
usermods/BH1750_v2/BH1750_v2.cpp (3)
usermods/BH1750_v2/BH1750_v2.h (4) (4)
  • name (70-70)
  • root (79-79)
  • root (82-82)
  • root (85-85)
usermods/sensors_to_mqtt/sensors_to_mqtt.cpp (2) (2)
  • name (69-97)
  • name (69-69)
usermods/SN_Photoresistor/SN_Photoresistor.cpp (8) (8)
  • checkBoundSensor (9-12)
  • checkBoundSensor (9-9)
  • addToJsonInfo (70-89)
  • addToJsonInfo (70-70)
  • addToConfig (95-107)
  • addToConfig (95-95)
  • readFromConfig (112-133)
  • readFromConfig (112-112)
usermods/usermod_v2_four_line_display_ALT/usermod_v2_four_line_display.h (1)
usermods/usermod_v2_rotary_encoder_ui_ALT/usermod_v2_rotary_encoder_ui_ALT.cpp (3) (3)
  • enabled (299-299)
  • root (350-350)
  • root (360-360)
🪛 Cppcheck (2.10-2)
wled00/um_manager.cpp

[error] 23-23: Comparing pointers that point to different objects

(comparePointers)

🪛 Ruff (0.8.2)
usermods/usermod_v2_rotary_encoder_ui_ALT/setup_deps.py

1-1: Undefined name Import

(F821)


4-4: Undefined name env

(F821)


8-8: Undefined name env

(F821)

usermods/seven_segment_display_reloaded/setup_deps.py

1-1: Undefined name Import

(F821)


4-4: Undefined name env

(F821)


7-7: Undefined name env

(F821)


9-9: Undefined name env

(F821)

⏰ Context from checks skipped due to timeout of 90000ms (1)
  • GitHub Check: wled_build / Build Enviornments (usermods)
🔇 Additional comments (47)
usermods/seven_segment_display_reloaded/library.json (1)

3-5: Build configuration setup looks good.

The addition of the build configuration with the extraScript property correctly references the setup_deps.py file which will be executed during the build process.

wled00/data/settings_um.htm (1)

16-16: API endpoint update is appropriate.

Changing the fetch URL from '/cfg.json' to '/json/cfg' aligns with modern API practices where resources are accessed through structured endpoint paths rather than directly accessing files.

usermods/usermod_v2_brightness_follow_sun/usermod_v2_brightness_follow_sun.cpp (1)

130-131: Properly registered usermod implementation.

The addition of the static instantiation and REGISTER_USERMOD macro is essential for the usermod to be recognized by the system. This change appropriately completes the implementation, allowing the brightness follow sun functionality to be available to users.

usermods/usermod_v2_rotary_encoder_ui_ALT/setup_deps.py (1)

1-8: Dependency setup script structure is correct.

The script correctly imports the environment configuration and checks for the presence of required user modules before adding appropriate preprocessor definitions. This approach ensures that the usermod will work properly when its dependencies are present.

The static analysis warnings about undefined names Import and env can be ignored as these are provided by the PlatformIO build environment in which this script runs.

🧰 Tools
🪛 Ruff (0.8.2)

1-1: Undefined name Import

(F821)


4-4: Undefined name env

(F821)


8-8: Undefined name env

(F821)

wled00/um_manager.cpp (1)

22-27: Enhanced setup with useful debug output.

The previous one-line implementation has been expanded to include debug printing that identifies which usermod is being set up. This is a helpful change for troubleshooting and tracking initialization.

🧰 Tools
🪛 Cppcheck (2.10-2)

[error] 23-23: Comparing pointers that point to different objects

(comparePointers)

usermods/usermod_v2_rotary_encoder_ui_ALT/library.json (1)

2-5:

✅ Verification successful

Updated module name and added build configuration.

The name has been simplified by removing the "v2" prefix, and a build configuration has been added with an extra script reference.


🏁 Script executed:

#!/bin/bash
# Verify that the setup_deps.py file exists in the directory
if [ -f "usermods/usermod_v2_rotary_encoder_ui_ALT/setup_deps.py" ]; then
  echo "setup_deps.py exists"
  cat "usermods/usermod_v2_rotary_encoder_ui_ALT/setup_deps.py" | head -n 20
else
  echo "Error: setup_deps.py does not exist"
fi

Length of output: 506


Module name update and build configuration verified

  • The module name in usermods/usermod_v2_rotary_encoder_ui_ALT/library.json has been correctly updated to "rotary_encoder_ui_ALT" by removing the "v2" prefix.
  • The build configuration now includes "extraScript": "setup_deps.py", and verification confirms that setup_deps.py exists with the expected content.
wled00/dmx_input.cpp (2)

25-25: Variable rename for consistency: doSerializeConfig → configNeedsWrite.

The variable has been renamed for consistency with other parts of the codebase while maintaining the same functionality.


43-43: Variable rename for consistency: doSerializeConfig → configNeedsWrite.

The variable has been renamed for consistency with other parts of the codebase while maintaining the same functionality.

wled00/fcn_declare.h (1)

30-31: Improved configuration serialization API.

The serialization process has been refactored to better separate concerns:

  1. serializeConfig() now takes a JsonObject parameter, allowing serialization without direct filesystem access
  2. A new serializeConfigToFS() function has been added to handle the filesystem writing aspect

This change improves modularity and allows for more flexible handling of configuration data.

wled00/improv.cpp (1)

275-275: Function call replaced for better clarity

The change from serializeConfig() to serializeConfigToFS() aligns with the broader refactoring in this PR to separate configuration serialization logic from file system operations. This function properly writes the configuration to the filesystem.

wled00/wled_server.cpp (1)

331-332: Variable renamed for better semantic clarity

Changing doSerializeConfig to configNeedsWrite improves readability by more clearly indicating that the configuration needs to be saved to persistent storage. This aligns with similar changes across the codebase.

wled00/presets.cpp (1)

245-246: Variable renamed for consistency

Changing doSerializeConfig to configNeedsWrite maintains consistency with the same change made in other files. This provides a clearer indication that the configuration should be written to persistent storage.

usermods/seven_segment_display_reloaded/setup_deps.py (1)

1-9: New build dependency script implemented correctly

This script conditionally adds preprocessor definitions based on which usermods are enabled, allowing the Seven Segment Display to integrate with light sensors from other modules if present. The implementation is clean and follows standard PlatformIO extension patterns.

Don't worry about the static analysis warnings - these names (Import, env) are defined within the PlatformIO build environment where this script executes.

🧰 Tools
🪛 Ruff (0.8.2)

1-1: Undefined name Import

(F821)


4-4: Undefined name env

(F821)


7-7: Undefined name env

(F821)


9-9: Undefined name env

(F821)

wled00/wled.h (1)

880-881: Improved variable naming for better clarity.

The renaming of the variable from doSerializeConfig to configNeedsWrite is a good change. The new name more clearly describes the variable's purpose as a flag indicating when configuration needs to be written to persistent storage.

usermods/usermod_v2_rotary_encoder_ui_ALT/usermod_v2_rotary_encoder_ui_ALT.cpp (1)

30-32: Good addition of conditional header inclusion.

This change improves modularity by conditionally including the Four Line Display header only when that usermod is enabled. This follows proper conditional compilation patterns already used elsewhere in the file and allows for better dependency management.

usermods/seven_segment_display_reloaded/seven_segment_display_reloaded.cpp (2)

2-7: Well-structured conditional inclusion for light sensor modules.

The conditional inclusion of these two light sensor headers enhances modularity, allowing the Seven Segment Display usermod to optionally work with either sensor type without requiring them.


396-401: Good usermod lookup implementation.

Proper initialization of the sensor pointers using the UsermodManager lookup system ensures the modules can be accessed only when enabled, avoiding null pointer issues.

wled00/json.cpp (3)

1030-1034: Good modernization using enum class for JSON targets

Switching from defined constants to a properly scoped enum class is a great improvement for type safety and code clarity. This change makes the codebase more maintainable by preventing accidental misuse of these values.


1036-1044: Consistent replacement of constant values with enum

The URL parsing logic has been consistently updated to use the new enum values, maintaining the same functionality while improving code readability and maintainability.


1066-1087: Improved API design with explicit JsonObject parameter

The call to serializeConfig now takes a JsonObject parameter, which makes the API contract more explicit and matches the function signature change in cfg.cpp. This is a good architectural improvement.

wled00/wled.cpp (4)

196-196: Meaningful variable rename for better clarity

Changing from doSerializeConfig to configNeedsWrite makes the variable's purpose clearer and more descriptive. This improves code readability.


203-203: Updated function call to match new implementation

The call to serializeConfig() has been replaced with serializeConfigToFS() to match the new implementation in cfg.cpp, maintaining the correct functionality while improving the naming to better describe what the function does.


226-226: Consistent variable rename in conditional logic

The condition in the reboot check has been updated to use the renamed configNeedsWrite variable, maintaining consistency across the codebase.


442-442: Enhanced debug logging with user module count

Adding the count of loaded user modules to the debug output improves diagnostics capabilities, making it easier to verify the correct loading of usermods during setup.

wled00/cfg.cpp (3)

691-708: Good separation of concerns for configuration serialization

The refactoring of serializeConfig into two distinct functions (serializeConfigToFS and serializeConfig) is an excellent improvement. This separates file operations from data structure handling, following the single responsibility principle and making the code more maintainable.


710-710: Well-structured implementation of JsonObject serialization

The new implementation of serializeConfig now takes a JsonObject parameter, allowing for greater flexibility in how the serialized configuration is used. This design enables reuse of the serialization logic for different purposes.


674-674: Consistent usage of new function name in all call sites

The calls to the old serializeConfig() function have been updated to use the new serializeConfigToFS() function, ensuring consistency throughout the codebase.

Also applies to: 688-688

usermods/usermod_v2_four_line_display_ALT/platformio_override.sample.ini (3)

2-2: Updated default environment setting

The default environment has been updated from esp32dev to esp32dev_fld, which better reflects the specific configuration for the four-line display usermod.


4-6: Improved modularity with environment inheritance

The new environment esp32dev_fld extends from esp32dev_V4 instead of duplicating settings, promoting code reuse and easier maintenance. This approach makes updates to the base environment automatically apply to this specialized environment.


7-12: Streamlined build configuration

The build flags now reference ${env:esp32dev_V4.build_flags} instead of repeating common flags, and the specific display configuration is cleanly separated. The removal of redundant library dependencies also simplifies the configuration.

usermods/usermod_v2_rotary_encoder_ui_ALT/platformio_override.sample.ini (2)

2-2:

✅ Verification successful

Confirm environment availability.
Changing the default environment to esp32dev_re relies on it being defined or extended correctly. Verify that this environment is recognized by PlatformIO and that any referenced configuration is properly set up.


🏁 Script executed:

#!/bin/bash
# Description: Check for references to [env:esp32dev_re] in the repository.
rg "\[env:esp32dev_re\]" -A 10

Length of output: 973


Action Required: Verify Extended Environment Configuration
The default environment is correctly set to esp32dev_re and is defined in the configuration file, as confirmed by the grep output. Note that this environment extends env:esp32dev_V4, so please ensure that the settings in env:esp32dev_V4 are properly configured and meet your intended requirements.

  • File: usermods/usermod_v2_rotary_encoder_ui_ALT/platformio_override.sample.ini
  • Key Points:
    • The [env:esp32dev_re] section exists as expected.
    • It extends from env:esp32dev_V4, so double-check that all inherited configurations (like build_flags and custom_usermods) are accurate.

12-12:

❓ Verification inconclusive

Check usage of pin 0.
Defining -D ENCODER_SW_PIN=0 can cause conflicts on some boards (e.g., boot modes on ESP32 or use as a strapping pin). Ensure that this does not interfere with normal operation.


🏁 Script executed:

#!/bin/bash
# Description: Check for pin usage conflicts with pin 0 in the codebase.
rg "PIN[^A-Za-z0-9_]?0"

Length of output: 1244


Attention: Verify Pin 0 Configurations Across Modules

Defining -D ENCODER_SW_PIN=0 in usermods/usermod_v2_rotary_encoder_ui_ALT/platformio_override.sample.ini should be reviewed in the context of other pin assignments in the codebase. The rg output shows multiple instances where pin 0 is used (e.g., BTNPIN=0 in several configuration files and DEEPSLEEP_WAKEUPPIN in usermods/deep_sleep/deep_sleep.cpp). Since pin 0 on platforms like the ESP32 can serve as a boot or strapping pin, please verify that its usage here does not introduce boot conflicts or interfere with critical operations. If potential conflicts are identified, consider reassigning ENCODER_SW_PIN to a different pin that is safe for use on your target boards.

usermods/usermod_v2_four_line_display_ALT/usermod_v2_four_line_display_ALT.cpp (2)

1-2: Header inclusion refactor.
Replacing old includes with usermod_v2_four_line_display.h and 4LD_wled_fonts.h centralizes display definitions and font assets, enhancing maintainability. This change looks good.


1072-1072:

✅ Verification successful

Usermod registration check.
The registration macro REGISTER_USERMOD(usermod_v2_four_line_display_alt); is correct for exposing the usermod to WLED. Confirm that no duplicates exist for the same usermod name.


🏁 Script executed:

#!/bin/bash
# Description: Verify that there is only one registration for FourLineDisplayUsermod.
rg "REGISTER_USERMOD\("

Length of output: 4794


Usermod registration confirmed.
The registration macro in usermods/usermod_v2_four_line_display_ALT/usermod_v2_four_line_display_ALT.cpp using REGISTER_USERMOD(usermod_v2_four_line_display_alt); is correct. The search output confirms that only one registration exists for this usermod, and there are no duplicates.

usermods/BH1750_v2/BH1750_v2.h (2)

6-8: Robust MQTT dependency check.
The preprocessor directive ensures compilation halts if MQTT is disabled, preventing malfunction at runtime. This is a clean, proactive approach.


30-92: New BH1750 usermod class structure.
Class encapsulation and straightforward member variables promote clarity. MQTT initialization and Home Assistant discovery are clearly separated, boosting maintainability.

usermods/SN_Photoresistor/SN_Photoresistor.h (1)

34-91: Overall structure is clear and extensible
The class follows a well-organized pattern for usermods and neatly separates configuration from runtime logic. It includes clear, dedicated methods for setup, loop, configuration, and JSON serialization. No issues beyond minor points mentioned above.

usermods/SN_Photoresistor/SN_Photoresistor.cpp (1)

14-24: Clarify the luminance calculation
The formula amps * 1000000 * 2.0 may need comments or references explaining why multiplying by 2.0 is appropriate. Ensure this logic reflects the real-world behavior of your photoresistor circuit.

Do you want to confirm this calibration? You could, for instance, measure known light levels and compare them to the sensor output.

usermods/BH1750_v2/BH1750_v2.cpp (4)

11-14: Potential risk of misinterpreting zero measurements
The condition (newValue == 0.0 && prevValue > 0.0) flags any transition to zero as a significant change. Verify that legitimate zero-lux readings (e.g., in total darkness) won’t falsely trigger unwanted behavior.


20-22: Good use of _createMqttSensor for dynamic discovery
The method effectively creates and publishes an MQTT sensor definition for Home Assistant discovery, making the device easily configurable. No issues found here.


82-94: Efficient handling of MQTT initialization in the loop
Conditionally calling _mqttInitialize() on the first publish is a good approach to reduce overhead and ensure that topics are set up only when needed. This looks correct.


113-114: Distinct states for “disabled” vs. “not found”
Providing separate statuses for a disabled sensor and a sensor that isn’t physically detected (line 115: “Not Found”) improves troubleshooting by differentiating between user configuration vs. hardware presence.

usermods/usermod_v2_four_line_display_ALT/usermod_v2_four_line_display.h (5)

179-205: Ensure loop() efficiency with frequent screen updates.
Repeatedly calling redraw() or updateBrightness() can cause performance bottlenecks if performed too often. Validate that loop() doesn’t hamper other processes, especially on resource-constrained devices.


279-305: Override configuration and confirm usage.
The addToConfig and readFromConfig methods are vital to store and retrieve usermod settings. If you rely on these stored values for display pins or performance parameters, confirm they’re used consistently in setup() or loop() to avoid mismatches.


306-314: ID consistency is well-implemented.
Returning USERMOD_ID_FOUR_LINE_DISP in getId() helps modules identify the usermod. Good practice is to ensure that this ID remains unique across the entire codebase and that references to it use the same constant.


1-4:

❓ Verification inconclusive

Confirm hardware I2C availability.
By undefining U8X8_NO_HW_I2C, you are forcing the use of hardware I2C. Please ensure the platform and pins you're using actually support hardware I2C.

Run this script to locate any other references to U8X8_NO_HW_I2C or I2C usage:


🏁 Script executed:

#!/bin/bash
rg -A 3 "U8X8_NO_HW_I2C"

Length of output: 489


Confirm Hardware I2C Support
In usermods/usermod_v2_four_line_display_ALT/usermod_v2_four_line_display.h, the #undef U8X8_NO_HW_I2C directive forces the library to use hardware I2C. The search confirms that this is the only occurrence in the repository, so please double-check that the target platform and designated pins genuinely support hardware I2C—especially if your setup might be limited to software I2C.


64-100:

❓ Verification inconclusive

Assess singleton pattern and concurrency.
Using a static FourLineDisplayUsermod* instance combined with threading can lead to synchronization challenges. Confirm that no concurrency or initialization race conditions arise if multiple usermods or tasks call getInstance() concurrently.


🏁 Script executed:

#!/bin/bash
# Searching the codebase for concurrent references to getInstance()
ast-grep --pattern $'getInstance($_)' 

Length of output: 38


Attention: Verify Thread Safety on Singleton Initialization

The current implementation of FourLineDisplayUsermod relies on a singleton pattern without explicit synchronization. Although our search for concurrent calls to getInstance() didn’t return any matches, this doesn’t guarantee that concurrent instantiation couldn’t occur—especially when threading is enabled (under ARDUINO_ARCH_ESP32 with FLD_ESP32_USE_THREADS). Please manually verify that only one instance is ever created in practice. In particular, confirm that:

  • The construction of the singleton is exclusively performed in a single-threaded context.
  • No concurrent tasks or usermod invocations call getInstance() before initialization is fully complete.
  • If there is any chance of concurrent instantiation, consider adding a mutex or similar thread-safety mechanism around the initialization logic.

Comment on lines +2 to +5
"name:": "seven_segment_display_reloaded",
"build": {
"extraScript": "setup_deps.py"
}
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue

Fix the JSON key typo in the name property.

The "name:" key contains an extra colon character that should be removed as it's not valid JSON syntax. The correct format should just be "name".

-  "name:": "seven_segment_display_reloaded",
+  "name": "seven_segment_display_reloaded",
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
"name:": "seven_segment_display_reloaded",
"build": {
"extraScript": "setup_deps.py"
}
"name": "seven_segment_display_reloaded",
"build": {
"extraScript": "setup_deps.py"
}

// allows this library to report to the user how long until the first
// measurement
bool getLuminanceComplete = false;
uint16_t lastLDRValue = -1000;
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue

Suspicious negative initialization for uint16_t lastLDRValue
uint16_t cannot represent negative values. Initializing it to -1000 may cause unexpected wrapping. Consider using a signed type if you need to store negative sentinel values or initialize it to 0.

-  uint16_t lastLDRValue = -1000;
+  int16_t lastLDRValue = -1000;  // or another sentinel approach
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
uint16_t lastLDRValue = -1000;
int16_t lastLDRValue = -1000; // or another sentinel approach

Comment on lines +101 to +117
// Next variables hold the previous known values to determine if redraw is
// required.
String knownSsid = apSSID;
IPAddress knownIp = IPAddress(4, 3, 2, 1);
uint8_t knownBrightness = 0;
uint8_t knownEffectSpeed = 0;
uint8_t knownEffectIntensity = 0;
uint8_t knownMode = 0;
uint8_t knownPalette = 0;
uint8_t knownMinute = 99;
uint8_t knownHour = 99;
byte brightness100;
byte fxspeed100;
byte fxintensity100;
bool knownnightlight = nightlightActive;
bool wificonnected = interfacesInited;
bool powerON = true;
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🛠️ Refactor suggestion

Consider memory semantics for volatile fields.
volatile bool fields like drawing and lockRedraw safeguard from some compiler optimizations, but they do not inherently protect against race conditions. If multiple threads read or write these fields, consider mutex locks or atomic operations.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants