Append LED number to Aura devices' LEDs

Makes identifying them easier then just 'Unknown' 8 times in a row.
This commit is contained in:
Stefan Reiter 2020-02-22 00:23:11 +01:00 committed by Adam Honse
parent c69a98096b
commit 20a99ef7ef

View file

@ -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);