Compare commits

...

6 Commits

Author SHA1 Message Date
netmindz
591dbe387c
Merge pull request #4780 from jasonsomers/main
Update settings_wifi.htm
2025-07-27 13:52:31 +01:00
Will Tatam
e5ba97bbe2 Prevent crash during blend if led init fails, https://github.com/wled/WLED/issues/4782 2025-07-27 13:15:42 +01:00
Will Tatam
b79e81f3be maxIssues for release notes 2025-07-27 11:43:44 +01:00
Jason Somers
806163f1ed
Merge branch 'wled:main' into main 2025-07-17 22:13:01 -04:00
Jason Somers
bfe6fa1e5d
Merge pull request #1 from jasonsomers/jasonsomers-patch-1
Update settings_wifi.htm
2025-03-25 13:54:38 -04:00
Jason Somers
cf391034da
Update settings_wifi.htm
Several of our controllers support the Ethernet module, so we figured it best to leave it as simply "RGB2Go" in the menu, as opposed to "RBG2Go" Tetra.
2025-03-25 13:54:06 -04:00
3 changed files with 8 additions and 2 deletions

View File

@ -24,6 +24,7 @@ jobs:
with:
token: ${{ secrets.GITHUB_TOKEN }}
sinceTag: v0.15.0
maxIssues: 500
- name: Create draft release
uses: softprops/action-gh-release@v1
with:

View File

@ -1344,6 +1344,11 @@ void WS2812FX::blendSegment(const Segment &topSegment) const {
uint8_t opacity = topSegment.currentBri(); // returns transitioned opacity for style FADE
uint8_t cct = topSegment.currentCCT();
if (length == 1) {
// Can't blend only a single pixel, prevents crash when bus init fails
return;
}
Segment::setClippingRect(0, 0); // disable clipping by default
const unsigned dw = (blendingStyle==BLEND_STYLE_OUTSIDE_IN ? progInv : progress) * width / 0xFFFFU + 1;

View File

@ -261,7 +261,7 @@ Static subnet mask:<br>
<option value="9">ABC! WLED V43 & compatible</option>
<option value="2">ESP32-POE</option>
<option value="11">ESP32-POE-WROVER</option>
<option value="6">ESP32Deux/RGB2Go Tetra</option>
<option value="6">ESP32Deux/RGB2Go</option>
<option value="7">KIT-VE</option>
<option value="12">LILYGO T-POE Pro</option>
<option value="8">QuinLED-Dig-Octa & T-ETH-POE</option>