Update Philips Wiz controller files to new standardized header comment

This commit is contained in:
Adam Honse 2024-06-03 11:46:18 -05:00
parent 2fd4cfb2a8
commit f9c17c75c5
5 changed files with 52 additions and 25 deletions

View file

@ -1,7 +1,12 @@
/*---------------------------------------------------------*\ /*---------------------------------------------------------*\
| Driver for Philips Wiz | | PhilipsWizController.cpp |
| | | |
| Adam Honse (calcprogrammer1@gmail.com), 9/15/2020 | | Driver for Philips Wiz |
| |
| Adam Honse (calcprogrammer1@gmail.com) 03 Nov 2020 |
| |
| This file is part of the OpenRGB project |
| SPDX-License-Identifier: GPL-2.0-only |
\*---------------------------------------------------------*/ \*---------------------------------------------------------*/
#include "PhilipsWizController.h" #include "PhilipsWizController.h"

View file

@ -1,17 +1,21 @@
/*---------------------------------------------------------*\ /*---------------------------------------------------------*\
| Definitions for Philips Wiz | | PhilipsWizController.h |
| | | |
| Adam Honse (calcprogrammer1@gmail.com), 11/3/2020 | | Driver for Philips Wiz |
| |
| Adam Honse (calcprogrammer1@gmail.com) 03 Nov 2020 |
| |
| This file is part of the OpenRGB project |
| SPDX-License-Identifier: GPL-2.0-only |
\*---------------------------------------------------------*/ \*---------------------------------------------------------*/
#include "RGBController.h" #pragma once
#include "net_port.h"
#include <string> #include <string>
#include <thread> #include <thread>
#include <vector> #include <vector>
#include "RGBController.h"
#pragma once #include "net_port.h"
#define PHILIPSWIZ_BRIGHTNESS_MAX 100 #define PHILIPSWIZ_BRIGHTNESS_MAX 100
#define PHILIPSWIZ_BRIGHTNESS_MIN 10 #define PHILIPSWIZ_BRIGHTNESS_MIN 10

View file

@ -1,11 +1,22 @@
/*---------------------------------------------------------*\
| PhilipsWizControllerDetect.cpp |
| |
| Detector for Philips Wiz |
| |
| Adam Honse (calcprogrammer1@gmail.com) 03 Nov 2020 |
| |
| 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 "Detector.h"
#include "PhilipsWizController.h" #include "PhilipsWizController.h"
#include "RGBController.h" #include "RGBController.h"
#include "RGBController_PhilipsWiz.h" #include "RGBController_PhilipsWiz.h"
#include "SettingsManager.h" #include "SettingsManager.h"
#include <vector>
#include <stdio.h>
#include <stdlib.h>
/******************************************************************************************\ /******************************************************************************************\
* * * *

View file

@ -1,10 +1,13 @@
/*-----------------------------------------*\ /*---------------------------------------------------------*\
| RGBController_PhilipsWiz.cpp | | RGBController_PhilipsWiz.cpp |
| | | |
| Generic RGB Interface for Philips Wiz | | RGBController for Philips Wiz |
| | | |
| Adam Honse (CalcProgrammer1) 11/3/2020 | | Adam Honse (calcprogrammer1@gmail.com) 03 Nov 2020 |
\*-----------------------------------------*/ | |
| This file is part of the OpenRGB project |
| SPDX-License-Identifier: GPL-2.0-only |
\*---------------------------------------------------------*/
#include "RGBController_PhilipsWiz.h" #include "RGBController_PhilipsWiz.h"

View file

@ -1,12 +1,16 @@
/*-----------------------------------------*\ /*---------------------------------------------------------*\
| RGBController_PhilipsWiz.h | | RGBController_PhilipsWiz.h |
| | | |
| Generic RGB Interface for Philips Wiz | | RGBController for Philips Wiz |
| | | |
| Adam Honse (CalcProgrammer1) 11/3/2020 | | Adam Honse (calcprogrammer1@gmail.com) 03 Nov 2020 |
\*-----------------------------------------*/ | |
| This file is part of the OpenRGB project |
| SPDX-License-Identifier: GPL-2.0-only |
\*---------------------------------------------------------*/
#pragma once #pragma once
#include "RGBController.h" #include "RGBController.h"
#include "PhilipsWizController.h" #include "PhilipsWizController.h"