From cb14ac2caefa960265403551bd67eb852d6c3787 Mon Sep 17 00:00:00 2001 From: Oli Date: Fri, 28 Oct 2022 12:24:30 +0100 Subject: [PATCH] SystemInfoDemo: Add a call to getUniqueDeviceID --- examples/Utilities/SystemInfoDemo.h | 1 + 1 file changed, 1 insertion(+) diff --git a/examples/Utilities/SystemInfoDemo.h b/examples/Utilities/SystemInfoDemo.h index 41f6dfe8be..f4bcddbe8f 100644 --- a/examples/Utilities/SystemInfoDemo.h +++ b/examples/Utilities/SystemInfoDemo.h @@ -135,6 +135,7 @@ static String getAllSystemInfo() << "Host name: " << SystemStats::getComputerName() << newLine << "Device type: " << SystemStats::getDeviceDescription() << newLine << "Manufacturer: " << SystemStats::getDeviceManufacturer() << newLine + << "Device ID: " << SystemStats::getUniqueDeviceID() << newLine << "User logon name: " << SystemStats::getLogonName() << newLine << "Full user name: " << SystemStats::getFullUserName() << newLine << "User region: " << SystemStats::getUserRegion() << newLine