mirror of
https://github.com/CalcProgrammer1/OpenRGB.git
synced 2025-12-24 07:47:49 -05:00
54 lines
2.6 KiB
C++
54 lines
2.6 KiB
C++
/*---------------------------------------------------------*\
|
|
| ElgatoKeyLightControllerDetect.cpp |
|
|
| |
|
|
| Detector for Elgato Key Light |
|
|
| |
|
|
| This file is part of the OpenRGB project |
|
|
| SPDX-License-Identifier: GPL-2.0-or-later |
|
|
\*---------------------------------------------------------*/
|
|
|
|
#include "Detector.h"
|
|
#include "ElgatoKeyLightController.h"
|
|
#include "RGBController_ElgatoKeyLight.h"
|
|
#include "SettingsManager.h"
|
|
|
|
/******************************************************************************************\
|
|
* *
|
|
* DetectElgatoKeyLightControllers *
|
|
* *
|
|
* Detect Elgato KeyLight devices *
|
|
* *
|
|
\******************************************************************************************/
|
|
|
|
void DetectElgatoKeyLightControllers()
|
|
{
|
|
json elgato_keylight_settings;
|
|
|
|
/*-------------------------------------------------*\
|
|
| Get KeyLight settings from settings manager |
|
|
\*-------------------------------------------------*/
|
|
elgato_keylight_settings = ResourceManager::get()->GetSettingsManager()->GetSettings("ElgatoKeyLightDevices");
|
|
|
|
/*----------------------------------------------------------*\
|
|
| If the Elgato Key Light settings contains devices, process|
|
|
\*----------------------------------------------------------*/
|
|
if(elgato_keylight_settings.contains("devices"))
|
|
{
|
|
for(unsigned int device_idx = 0; device_idx < elgato_keylight_settings["devices"].size(); device_idx++)
|
|
{
|
|
if(elgato_keylight_settings["devices"][device_idx].contains("ip"))
|
|
{
|
|
std::string elgato_keylight_ip = elgato_keylight_settings["devices"][device_idx]["ip"];
|
|
|
|
ElgatoKeyLightController* controller = new ElgatoKeyLightController(elgato_keylight_ip);
|
|
RGBController_ElgatoKeyLight* rgb_controller = new RGBController_ElgatoKeyLight(controller);
|
|
|
|
ResourceManager::get()->RegisterRGBController(rgb_controller);
|
|
}
|
|
}
|
|
}
|
|
|
|
} /* DetectElgatoKeyLightControllers() */
|
|
|
|
REGISTER_DETECTOR("ElgatoKeyLight", DetectElgatoKeyLightControllers);
|