forked from tbnobody/OpenDTU
-
-
Notifications
You must be signed in to change notification settings - Fork 102
[Feature] add averaging for powermeters #2454
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
Open
spcqike
wants to merge
5
commits into
hoylabs:development
Choose a base branch
from
spcqike:powermeter_average
base: development
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
ad7e51b
add powermeter average building with min, max, average, last value fe…
spcqike fb26d94
Merge branch 'hoylabs:development' into powermeter_average
spcqike 6a17ed6
fix powermeter_avg fr translation, clamp min/max on input
spcqike 07ac65c
Merge branch 'powermeter_average' of https://github.com/spcqike/OpenD…
spcqike f69ea1f
Merge branch 'hoylabs:development' into powermeter_average
spcqike File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sanitize invalid averaging values when loading
config.json.WindowModeis blindly cast here, and only the lower bound ofWindowSizeis enforced. A restored or hand-edited config can still loadmode=99orwindow=500, which then gets echoed back through/api/powermeter/configand leaves the admin form in an invalid state. Clamp the enum and the mode-specific upper bound during deserialization as well.♻️ Proposed fix
void ConfigurationClass::deserializePowerMeterAveragingConfig(JsonObject const& source, PowerMeterAveragingConfig& target) { target.Enabled = source["enabled"] | POWERMETER_AVERAGING_ENABLED; - target.WindowMode = static_cast<PowerMeterAveragingConfig::Mode>(source["mode"] | POWERMETER_AVERAGING_MODE); - target.WindowSize = source["window"] | POWERMETER_AVERAGING_WINDOW; - target.WindowSize = std::max<uint16_t>(1, target.WindowSize); + auto mode = source["mode"] | POWERMETER_AVERAGING_MODE; + if (mode != PowerMeterAveragingConfig::Mode::Samples + && mode != PowerMeterAveragingConfig::Mode::Time) { + mode = PowerMeterAveragingConfig::Mode::Samples; + } + target.WindowMode = static_cast<PowerMeterAveragingConfig::Mode>(mode); + + target.WindowSize = std::max<uint16_t>(1, source["window"] | POWERMETER_AVERAGING_WINDOW); + uint16_t maxWindow = (target.WindowMode == PowerMeterAveragingConfig::Mode::Samples) ? 200 : 120; + target.WindowSize = std::min<uint16_t>(target.WindowSize, maxWindow); }🤖 Prompt for AI Agents
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
does this need a fix? as its the same for all other inputs, too. one can always modify and destroy its own config.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@spcqike, you're right — this is consistent with the project-wide convention insrc/Configuration.cpp. Based on a previously recorded learning from this codebase, all deserialization functions here intentionally trust the client payload without backend range validation, and that pattern is applied uniformly across the file (e.g.,deserializeBatteryConfig,deserializePowerLimiterConfig,deserializeGridChargerConfig).Additionally,
sanitizeAveragingConfiginController.cppalready clamps the mode and window size at runtime, so invalid values inconfig.jsonare corrected before they affect behavior anyway. The suggestion to add extra validation in the deserialization layer is unnecessary here. I'll withdraw this comment.🧠 Learnings used