Update Lian Li SLV2 Uni Hub controller files to new standardized header comment

This commit is contained in:
Adam Honse 2024-05-25 17:56:38 -05:00
parent 86784b983c
commit cdcbf5209c
4 changed files with 52 additions and 47 deletions

View file

@ -1,17 +1,18 @@
/*-----------------------------------------*\
| LianLiUniHubSLV2Controller.cpp |
| |
| Driver for Lian Li Uni Hub SLV2 USB |
| lighting controller |
| |
| Will Kennedy 01/17/2023 |
| Oliver P 04/26/2022 |
| Credit to Luca Lovisa for original work. |
\*-----------------------------------------*/
#include "LianLiUniHubSLV2Controller.h"
/*---------------------------------------------------------*\
| LianLiUniHubSLV2Controller.cpp |
| |
| Driver for Lian Li SLV2 Uni Hub |
| |
| Will Kennedy 17 Jan 2023 |
| Oliver P 26 Apr 2022 |
| Credit to Luca Lovisa for original work. |
| |
| This file is part of the OpenRGB project |
| SPDX-License-Identifier: GPL-2.0-only |
\*---------------------------------------------------------*/
#include <string.h>
#include "LianLiUniHubSLV2Controller.h"
using namespace std::chrono_literals;

View file

@ -1,19 +1,21 @@
/*-----------------------------------------*\
| LianLiHubSLV2Controller.h |
| |
| Definitions and types for Lian Li SLV2120|
| |
| Will Kennedy 01/17/2023 |
| Oliver P 04/26/2022 |
| Credit to Luca Lovisa for original work. |
\*-----------------------------------------*/
/*---------------------------------------------------------*\
| LianLiUniHubSLV2Controller.h |
| |
| Driver for Lian Li SLV2 Uni Hub |
| |
| Will Kennedy 17 Jan 2023 |
| Oliver P 26 Apr 2022 |
| Credit to Luca Lovisa for original work. |
| |
| This file is part of the OpenRGB project |
| SPDX-License-Identifier: GPL-2.0-only |
\*---------------------------------------------------------*/
#include "RGBController.h"
#pragma once
#include <string>
#include <hidapi/hidapi.h>
#pragma once
#include "RGBController.h"
/*----------------------------------------------------------------------------*\
| Global definitions. |

View file

@ -1,17 +1,18 @@
/*-----------------------------------------*\
| RGBController_LianLiUniHubSLV2.cpp |
| |
| Generic RGB Interface for Lian Li Uni |
| Hub SLV2 USB controller driver |
| |
| Will Kennedy 01/17/2023 |
| Oliver P 04/26/2022 |
| Credit to Luca Lovisa for original work. |
\*-----------------------------------------*/
#include "RGBController_LianLiUniHubSLV2.h"
/*---------------------------------------------------------*\
| RGBController_LianLiUniHubSLV2.cpp |
| |
| RGBController for Lian Li SLV2 Uni Hub |
| |
| Will Kennedy 17 Jan 2023 |
| Oliver P 26 Apr 2022 |
| Credit to Luca Lovisa for original work. |
| |
| This file is part of the OpenRGB project |
| SPDX-License-Identifier: GPL-2.0-only |
\*---------------------------------------------------------*/
#include <string>
#include "RGBController_LianLiUniHubSLV2.h"
/**------------------------------------------------------------------*\
@name Lian Li Uni Hub SLV2

View file

@ -1,19 +1,20 @@
/*-----------------------------------------*\
| RGBController_LianLiUniHubSLV2.h |
| |
| Generic RGB Interface for Lian Li Uni |
| Hub SLV2 USB controller driver |
| |
| Will Kennedy 01/17/2023 |
| Oliver P 04/26/2022 |
| Credit to Luca Lovisa for original work. |
\*-----------------------------------------*/
/*---------------------------------------------------------*\
| RGBController_LianLiUniHubSLV2.h |
| |
| RGBController for Lian Li SLV2 Uni Hub |
| |
| Will Kennedy 17 Jan 2023 |
| Oliver P 26 Apr 2022 |
| Credit to Luca Lovisa for original work. |
| |
| This file is part of the OpenRGB project |
| SPDX-License-Identifier: GPL-2.0-only |
\*---------------------------------------------------------*/
#pragma once
#include <cstdint>
#include <vector>
#include "LianLiUniHubSLV2Controller.h"
#include "RGBController.h"