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"

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"
#include "net_port.h"
#pragma once
#include <string>
#include <thread>
#include <vector>
#pragma once
#include "RGBController.h"
#include "net_port.h"
#define PHILIPSWIZ_BRIGHTNESS_MAX 100
#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 "PhilipsWizController.h"
#include "RGBController.h"
#include "RGBController_PhilipsWiz.h"
#include "SettingsManager.h"
#include <vector>
#include <stdio.h>
#include <stdlib.h>
/******************************************************************************************\
* *

View File

@@ -1,10 +1,13 @@
/*-----------------------------------------*\
| RGBController_PhilipsWiz.cpp |
| |
| Generic RGB Interface for Philips Wiz |
| |
| Adam Honse (CalcProgrammer1) 11/3/2020 |
\*-----------------------------------------*/
/*---------------------------------------------------------*\
| RGBController_PhilipsWiz.cpp |
| |
| RGBController 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_PhilipsWiz.h"

View File

@@ -1,12 +1,16 @@
/*-----------------------------------------*\
| RGBController_PhilipsWiz.h |
| |
| Generic RGB Interface for Philips Wiz |
| |
| Adam Honse (CalcProgrammer1) 11/3/2020 |
\*-----------------------------------------*/
/*---------------------------------------------------------*\
| RGBController_PhilipsWiz.h |
| |
| RGBController 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 |
\*---------------------------------------------------------*/
#pragma once
#include "RGBController.h"
#include "PhilipsWizController.h"