/*---------------------------------------------------------*\ | NanoleafControllerDetect.cpp | | | | Detector for Nanoleaf | | | | Nikita Rushmanov 13 Jan 2022 | | | | This file is part of the OpenRGB project | | SPDX-License-Identifier: GPL-2.0-or-later | \*---------------------------------------------------------*/ #include "Detector.h" #include "RGBController_Nanoleaf.h" #include "SettingsManager.h" #include "LogManager.h" /*----------------------------------------------------------------------------------------*\ | | | DetectNanoleafControllers | | | | Connect to paired Nanoleaf devices | | | \*----------------------------------------------------------------------------------------*/ void DetectNanoleafControllers() { 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"]); ResourceManager::get()->RegisterRGBController(rgb_controller); } catch(...) { LOG_DEBUG("[Nanoleaf] Could not connect to device at %s:%d using auth_token %s", device["ip"].get().c_str(), device["port"].get(), device["auth_token"].get().c_str()); } } } } } /* DetectNanoleafControllers() */ REGISTER_DETECTOR("Nanoleaf", DetectNanoleafControllers);