Update LIFX controller files to new standardized header comment

This commit is contained in:
Adam Honse 2024-05-25 18:19:27 -05:00
parent 841b85a589
commit baa6c1a2e4
5 changed files with 52 additions and 25 deletions

View file

@ -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"

View file

@ -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
{

View file

@ -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>
/******************************************************************************************\
* *

View file

@ -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"

View file

@ -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"