Update LIFX controller files to new standardized header comment
This commit is contained in:
parent
841b85a589
commit
baa6c1a2e4
5 changed files with 52 additions and 25 deletions
|
|
@ -1,7 +1,12 @@
|
|||
/*---------------------------------------------------------*\
|
||||
| Driver for LIFX |
|
||||
| LIFXController.cpp |
|
||||
| |
|
||||
| Adam Honse (calcprogrammer1@gmail.com), 2/5/2022 |
|
||||
| Driver for LIFX |
|
||||
| |
|
||||
| Adam Honse (calcprogrammer1@gmail.com) 05 Feb 2022 |
|
||||
| |
|
||||
| This file is part of the OpenRGB project |
|
||||
| SPDX-License-Identifier: GPL-2.0-only |
|
||||
\*---------------------------------------------------------*/
|
||||
|
||||
#include "LIFXController.h"
|
||||
|
|
|
|||
|
|
@ -1,17 +1,21 @@
|
|||
/*---------------------------------------------------------*\
|
||||
| Definitions for LIFX |
|
||||
| LIFXController.h |
|
||||
| |
|
||||
| Adam Honse (calcprogrammer1@gmail.com), 2/5/2022 |
|
||||
| Driver for LIFX |
|
||||
| |
|
||||
| Adam Honse (calcprogrammer1@gmail.com) 05 Feb 2022 |
|
||||
| |
|
||||
| This file is part of the OpenRGB project |
|
||||
| SPDX-License-Identifier: GPL-2.0-only |
|
||||
\*---------------------------------------------------------*/
|
||||
|
||||
#include "RGBController.h"
|
||||
#include "net_port.h"
|
||||
#pragma once
|
||||
|
||||
#include <string>
|
||||
#include <thread>
|
||||
#include <vector>
|
||||
|
||||
#pragma once
|
||||
#include "RGBController.h"
|
||||
#include "net_port.h"
|
||||
|
||||
enum
|
||||
{
|
||||
|
|
|
|||
|
|
@ -1,11 +1,22 @@
|
|||
/*---------------------------------------------------------*\
|
||||
| LIFXControllerDetect.cpp |
|
||||
| |
|
||||
| Detector for LIFX |
|
||||
| |
|
||||
| Adam Honse (calcprogrammer1@gmail.com) 05 Feb 2022 |
|
||||
| |
|
||||
| This file is part of the OpenRGB project |
|
||||
| SPDX-License-Identifier: GPL-2.0-only |
|
||||
\*---------------------------------------------------------*/
|
||||
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <vector>
|
||||
#include "Detector.h"
|
||||
#include "LIFXController.h"
|
||||
#include "RGBController.h"
|
||||
#include "RGBController_LIFX.h"
|
||||
#include "SettingsManager.h"
|
||||
#include <vector>
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
/******************************************************************************************\
|
||||
* *
|
||||
|
|
|
|||
|
|
@ -1,10 +1,13 @@
|
|||
/*-----------------------------------------*\
|
||||
| RGBController_LIFX.cpp |
|
||||
| |
|
||||
| Generic RGB Interface for LIFX |
|
||||
| |
|
||||
| Adam Honse (CalcProgrammer1) 2/5/2022 |
|
||||
\*-----------------------------------------*/
|
||||
/*---------------------------------------------------------*\
|
||||
| RGBController_LIFX.cpp |
|
||||
| |
|
||||
| RGBController for LIFX |
|
||||
| |
|
||||
| Adam Honse (calcprogrammer1@gmail.com) 05 Feb 2022 |
|
||||
| |
|
||||
| This file is part of the OpenRGB project |
|
||||
| SPDX-License-Identifier: GPL-2.0-only |
|
||||
\*---------------------------------------------------------*/
|
||||
|
||||
#include "RGBController_LIFX.h"
|
||||
|
||||
|
|
|
|||
|
|
@ -1,12 +1,16 @@
|
|||
/*-----------------------------------------*\
|
||||
| RGBController_LIFX.h |
|
||||
| |
|
||||
| Generic RGB Interface for LIFX |
|
||||
| |
|
||||
| Adam Honse (CalcProgrammer1) 2/5/2022 |
|
||||
\*-----------------------------------------*/
|
||||
/*---------------------------------------------------------*\
|
||||
| RGBController_LIFX.cpp |
|
||||
| |
|
||||
| RGBController for LIFX |
|
||||
| |
|
||||
| Adam Honse (calcprogrammer1@gmail.com) 05 Feb 2022 |
|
||||
| |
|
||||
| This file is part of the OpenRGB project |
|
||||
| SPDX-License-Identifier: GPL-2.0-only |
|
||||
\*---------------------------------------------------------*/
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "RGBController.h"
|
||||
#include "LIFXController.h"
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue