Skip to content

Commit

Permalink
14.5.0-beta, build 2412180
Browse files Browse the repository at this point in the history
  • Loading branch information
softhack007 committed Dec 18, 2024
1 parent ae65a83 commit a7a27d9
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "wled",
"version": "14.5.0-dev",
"version": "14.5.0-beta",
"description": "Tools for WLED project",
"main": "tools/cdata.js",
"directories": {
Expand Down
2 changes: 1 addition & 1 deletion wled00/improv.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ void sendImprovInfoResponse() {
bool useMdnsName = (strcmp(serverDescription, "WLED") == 0 && strlen(cmDNS) > 0);
char vString[32] = { '\0' };
//snprintf_P(vString, sizeof(vString)-1, PSTR("0.14.1-b34.42/%i"),VERSION); // upstream baseline
snprintf_P(vString, sizeof(vString)-1, PSTR("14.5.0-dev/%i"),VERSION); // WLEDMM version
snprintf_P(vString, sizeof(vString)-1, PSTR("14.5.0-beta/%i"),VERSION); // WLEDMM version
const char *str[4] = {"WLED", vString, bString, useMdnsName ? cmDNS : serverDescription};

sendImprovRPCResult(ImprovRPCType::Request_Info, 4, str);
Expand Down
4 changes: 2 additions & 2 deletions wled00/wled.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
/*
Main sketch, global variable declarations
@title WLED project sketch
@version 14.5.0-dev
@version 14.5.0-beta
*/

// version code in format yymmddb (b = daily build)
#define VERSION 2412110
#define VERSION 2412180

// WLEDMM - you can check for this define in usermods, to only enabled WLEDMM specific code in the "right" fork. Its not defined in AC WLED.
#define _MoonModules_WLED_
Expand Down

5 comments on commit a7a27d9

@dosipod
Copy link

Choose a reason for hiding this comment

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

On 14.5.0-beta (build 2412180) , something is off with peek ( and liveview2D ) , did not notice anything on fixture .
Image

@softhack007
Copy link
Collaborator Author

Choose a reason for hiding this comment

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

🤔 the intermediate color flashes are possibly related to "coss-fade" (LED settings) ... can you check if the same happens when cross-fade is disabled?

@dosipod
Copy link

Choose a reason for hiding this comment

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

Yeah seems it is related to coss-fade , with it disabled peek seems fine , I only see the crossfade name in MM now , might be its blending in AC

@dosipod
Copy link

Choose a reason for hiding this comment

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

@softhack007 Might be there is another thing , once I factory reset a unit , it is fine even with coss-fade checked ( this is the default after factory reset ) .But I see the flashes again on peek once I changed the output to use DDP which is the way I test with all my units .

So without DDP there is no flashes even with coss-fade and I see something new for DDP to include Color Order so might be that

@softhack007
Copy link
Collaborator Author

Choose a reason for hiding this comment

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

@dosipod yes it seems there are problems when a unit receives leds by DDP or Art-Net ... @troyhacks has noticed that with two outputs, the second output regularly "dies" when receiving from another unit.

External control uses a different "path" for writing leds, so it might be that this path has problems with some optimizations we added for effects. I will need to look into it after xmas.

Please sign in to comment.