From c534328cc5b20c9d17cc97d6c61fcdcfb9202276 Mon Sep 17 00:00:00 2001 From: Damian Schneider Date: Tue, 25 Nov 2025 19:45:23 +0100 Subject: [PATCH] return String not uint --- wled00/util.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wled00/util.cpp b/wled00/util.cpp index 8d71d16e..5b4ae29f 100644 --- a/wled00/util.cpp +++ b/wled00/util.cpp @@ -1160,7 +1160,7 @@ String computeSHA1(const String& input) { #ifdef ESP32 #include "esp_adc_cal.h" -uint32_t* generateDeviceFingerprint() { +String generateDeviceFingerprint() { uint32_t fp[2]; // create 64 bit fingerprint esp_chip_info_t chip_info; esp_chip_info(&chip_info);