Update Nanoleaf controller files to new standardized header comment
This commit is contained in:
parent
feefc79757
commit
9df2289bf4
5 changed files with 53 additions and 28 deletions
|
|
@ -1,10 +1,13 @@
|
|||
/*-----------------------------------------*\
|
||||
| NanoleafController.cpp |
|
||||
| |
|
||||
| API Interface for Nanoleaf devices |
|
||||
| |
|
||||
| Nikita Rushmanov 01/13/2022 |
|
||||
\*-----------------------------------------*/
|
||||
/*---------------------------------------------------------*\
|
||||
| NanoleafController.cpp |
|
||||
| |
|
||||
| Driver for Nanoleaf |
|
||||
| |
|
||||
| Nikita Rushmanov 13 Jan 2022 |
|
||||
| |
|
||||
| This file is part of the OpenRGB project |
|
||||
| SPDX-License-Identifier: GPL-2.0-only |
|
||||
\*---------------------------------------------------------*/
|
||||
|
||||
#include "NanoleafController.h"
|
||||
#include "LogManager.h"
|
||||
|
|
|
|||
|
|
@ -1,10 +1,13 @@
|
|||
/*-----------------------------------------*\
|
||||
| NanoleafController.h |
|
||||
| |
|
||||
| API Interface for Nanoleaf devices |
|
||||
| |
|
||||
| Nikita Rushmanov 01/13/2022 |
|
||||
\*-----------------------------------------*/
|
||||
/*---------------------------------------------------------*\
|
||||
| NanoleafController.h |
|
||||
| |
|
||||
| Driver for Nanoleaf |
|
||||
| |
|
||||
| Nikita Rushmanov 13 Jan 2022 |
|
||||
| |
|
||||
| This file is part of the OpenRGB project |
|
||||
| SPDX-License-Identifier: GPL-2.0-only |
|
||||
\*---------------------------------------------------------*/
|
||||
|
||||
#pragma once
|
||||
|
||||
|
|
|
|||
|
|
@ -1,3 +1,14 @@
|
|||
/*---------------------------------------------------------*\
|
||||
| NanoleafControllerDetect.cpp |
|
||||
| |
|
||||
| Detector for Nanoleaf |
|
||||
| |
|
||||
| Nikita Rushmanov 13 Jan 2022 |
|
||||
| |
|
||||
| This file is part of the OpenRGB project |
|
||||
| SPDX-License-Identifier: GPL-2.0-only |
|
||||
\*---------------------------------------------------------*/
|
||||
|
||||
#include "Detector.h"
|
||||
#include "RGBController_Nanoleaf.h"
|
||||
#include "SettingsManager.h"
|
||||
|
|
|
|||
|
|
@ -1,15 +1,19 @@
|
|||
/*-----------------------------------------*\
|
||||
| RGBController_Nanoleaf.cpp |
|
||||
| |
|
||||
| Generic RGB Interface for Nanoleaf |
|
||||
| |
|
||||
| Nikita Rushmanov 01/13/2022 |
|
||||
\*-----------------------------------------*/
|
||||
/*---------------------------------------------------------*\
|
||||
| RGBController_Nanoleaf.cpp |
|
||||
| |
|
||||
| RGBController for Nanoleaf |
|
||||
| |
|
||||
| Nikita Rushmanov 13 Jan 2022 |
|
||||
| |
|
||||
| This file is part of the OpenRGB project |
|
||||
| SPDX-License-Identifier: GPL-2.0-only |
|
||||
\*---------------------------------------------------------*/
|
||||
|
||||
#include "RGBController_Nanoleaf.h"
|
||||
#include "ResourceManager.h"
|
||||
#include "LogManager.h"
|
||||
#include "json.hpp"
|
||||
|
||||
using json = nlohmann::json;
|
||||
|
||||
/**------------------------------------------------------------------*\
|
||||
|
|
|
|||
|
|
@ -1,12 +1,16 @@
|
|||
/*-----------------------------------------*\
|
||||
| RGBController_Nanoleaf.h |
|
||||
| |
|
||||
| Generic RGB Interface for Nanoleaf |
|
||||
| |
|
||||
| Nikita Rushmanov 01/13/2022 |
|
||||
\*-----------------------------------------*/
|
||||
/*---------------------------------------------------------*\
|
||||
| RGBController_Nanoleaf.h |
|
||||
| |
|
||||
| RGBController for Nanoleaf |
|
||||
| |
|
||||
| Nikita Rushmanov 13 Jan 2022 |
|
||||
| |
|
||||
| This file is part of the OpenRGB project |
|
||||
| SPDX-License-Identifier: GPL-2.0-only |
|
||||
\*---------------------------------------------------------*/
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "RGBController.h"
|
||||
#include "NanoleafController.h"
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue