From 20a99ef7ef95c48ae5aff4e7714c072b08c98ee6 Mon Sep 17 00:00:00 2001 From: Stefan Reiter Date: Sat, 22 Feb 2020 00:23:11 +0100 Subject: [PATCH] Append LED number to Aura devices' LEDs Makes identifying them easier then just 'Unknown' 8 times in a row. --- RGBController/RGBController_Aura.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/RGBController/RGBController_Aura.cpp b/RGBController/RGBController_Aura.cpp index 6fd8ceff..83dc0058 100644 --- a/RGBController/RGBController_Aura.cpp +++ b/RGBController/RGBController_Aura.cpp @@ -214,6 +214,7 @@ RGBController_Aura::RGBController_Aura(AuraController * aura_ptr) led* new_led = new led(); new_led->name = aura->GetChannelName(i); + new_led->name.append(std::to_string(i)); leds.push_back(*new_led);