From 5d370f834f8d6473ca86a56b97378e5110224737 Mon Sep 17 00:00:00 2001 From: Frank <91616163+softhack007@users.noreply.github.com> Date: Tue, 10 Mar 2026 18:07:34 +0100 Subject: [PATCH] fix for builds with DMX-In support --- wled00/dmx_input.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wled00/dmx_input.cpp b/wled00/dmx_input.cpp index 86bdf490..3efed071 100644 --- a/wled00/dmx_input.cpp +++ b/wled00/dmx_input.cpp @@ -56,8 +56,8 @@ static dmx_config_t createConfig() config.software_version_id = VERSION; strcpy(config.device_label, "WLED_MM"); - const std::string versionString = "WLED_V" + std::to_string(VERSION); - strncpy(config.software_version_label, versionString.c_str(), 32); + const std::string dmxWledVersionString = "WLED_V" + std::to_string(VERSION); + strncpy(config.software_version_label, dmxWledVersionString.c_str(), 32); config.software_version_label[32] = '\0'; // zero termination in case versionString string was longer than 32 chars config.personalities[0].description = "SINGLE_RGB";