From 9b787e13d11efbae7c7893898d9b88f749f5817b Mon Sep 17 00:00:00 2001 From: Will Tatam Date: Fri, 21 Nov 2025 08:22:22 +0000 Subject: [PATCH] swap to using ESP.getFlashChipId for the 8266 --- wled00/util.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wled00/util.cpp b/wled00/util.cpp index f9993988..5f8c037d 100644 --- a/wled00/util.cpp +++ b/wled00/util.cpp @@ -1201,7 +1201,7 @@ String getDeviceId() { // but as WLED developers are just looking at statistics and not authenticating devices, this is acceptable. // If the usage data was exfiltrated, you could not easily determine the MAC from the device ID without brute forcing SHA1 #ifdef ESP8266 - String deviceString = String(macStr) + "WLED" + ESP.getChipId(); + String deviceString = String(macStr) + "WLED" + ESP.getFlashChipId(); #else String deviceString = String(macStr) + "WLED" + ESP.getChipModel() + ESP.getChipRevision(); deviceString += dump_raw_block(EFUSE_BLK0);