mirror of
https://github.com/CalcProgrammer1/OpenRGB.git
synced 2025-12-25 08:17:53 -05:00
41 lines
1.9 KiB
C++
41 lines
1.9 KiB
C++
#include "Detector.h"
|
|
#include "RGBController_Nanoleaf.h"
|
|
#include "SettingsManager.h"
|
|
#include "LogManager.h"
|
|
|
|
/*----------------------------------------------------------------------------------------*\
|
|
| |
|
|
| DetectNanoleafControllers |
|
|
| |
|
|
| Connect to paired Nanoleaf devices |
|
|
| |
|
|
\*----------------------------------------------------------------------------------------*/
|
|
|
|
void DetectNanoleafControllers(std::vector<RGBController*> &rgb_controllers)
|
|
{
|
|
json nanoleaf_settings = ResourceManager::get()->GetSettingsManager()->GetSettings("NanoleafDevices");
|
|
|
|
if(nanoleaf_settings.contains("devices"))
|
|
{
|
|
for(json::const_iterator it = nanoleaf_settings["devices"].begin(); it != nanoleaf_settings["devices"].end(); ++it)
|
|
{
|
|
const json& device = it.value();
|
|
|
|
if(device.contains("ip") && device.contains("port") && device.contains("auth_token"))
|
|
{
|
|
try
|
|
{
|
|
RGBController_Nanoleaf* rgb_controller = new RGBController_Nanoleaf(device["ip"], device["port"], device["auth_token"]);
|
|
rgb_controllers.push_back(rgb_controller);
|
|
}
|
|
catch(...)
|
|
{
|
|
LOG_DEBUG("[Nanoleaf] Could not connect to device at %s:%s using auth_token %s", device["ip"].get<std::string>().c_str(), device["port"].get<std::string>().c_str(), device["auth_token"].get<std::string>().c_str());
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} /* DetectNanoleafControllers() */
|
|
|
|
REGISTER_DETECTOR("Nanoleaf", DetectNanoleafControllers);
|