-
Notifications
You must be signed in to change notification settings - Fork 0
Merge release/v0.15.1 into main #1
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
u20p17
wants to merge
145
commits into
main
Choose a base branch
from
release/v0.15.1
base: main
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
Conversation
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
Defer calling begin() on buses
Add support for ESP32-S3 WROOM-2 (solves wled#4099)
Fix release name macro expansion
Fix release name macro expansion
Fixed point calculation for improved accuracy, dithering in debug builds only. Averaging and optional multiplier can be set as compile flags, example for speed testing with long averaging and a 10x multiplier: -D FPS_CALC_AVG=200 -D FPS_MULTIPLIER=10 The calculation resolution is limited (9.7bit fixed point) so values larger than 200 can hit resolution limit and get stuck before reaching the final value. If WLED_DEBUG is defined, dithering is added to the returned value so sub-frame accuracy is possible in post-processingwithout enabling the multiplier.
dithering is not really needed, the FPS_MULTIPLIER is a much better option.
Avoiding name collisions with the 'delay' function.
Don't generate a response if there's no HTTP request. Fixes wled#4269
Fixes bug introduced by wled#4312.
While not used by most bus types, it's not an optional parameter.
… the need to restart the esp32
…GA out have same values; communication enhancement like tasmota implemented
… GA_OUT (and GA_IN) mappings accordingly
…) datapoints to GA in/out
…p until next restart
…placed the repetitive KNX registration lambdas
… adjustWarm) plus a tiny addClamp255 helper. WW and CW relative functions now delegate to that helper, and onKnxColorRel uses a shared clamp path.
…n; added UDPDebugging for esps with bad accessability
… properly, in order to see RGB changes from KNX also in the WLED GUI; added debug messages
Only update last known state after scheduling publish, not during detection. Fixes issue where repeated scheduleStatePublish() calls couldn't detect the same change until it was actually sent.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Bring v0.15.1 release branch changes into main.