Update Lian Li Uni Hub SL Infinity controller files to new standardized header comment
This commit is contained in:
parent
3806a8ae04
commit
86784b983c
4 changed files with 56 additions and 52 deletions
|
|
@ -1,18 +1,19 @@
|
|||
/*-----------------------------------------*\
|
||||
| LianLiUniHubSLInfinityController.cpp |
|
||||
| |
|
||||
| Driver for Lian Li Uni Hub SL INF USB |
|
||||
| lighting controller |
|
||||
| |
|
||||
| Simon McKenna 2023-20-21 |
|
||||
| Will Kennedy 01/17/2023 |
|
||||
| Oliver P 04/26/2022 |
|
||||
| Credit to Luca Lovisa for original work. |
|
||||
\*-----------------------------------------*/
|
||||
|
||||
#include "LianLiUniHubSLInfinityController.h"
|
||||
/*---------------------------------------------------------*\
|
||||
| LianLiUniHubSLInfinityController.cpp |
|
||||
| |
|
||||
| Driver for Lian Li SL Infinity Uni Hub |
|
||||
| |
|
||||
| Simon McKenna 21 Oct 2023 |
|
||||
| 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 "LianLiUniHubSLInfinityController.h"
|
||||
|
||||
using namespace std::chrono_literals;
|
||||
|
||||
|
|
|
|||
|
|
@ -1,20 +1,22 @@
|
|||
/*----------------------------------------------*\
|
||||
| LianLiHubSLInfinityController.h |
|
||||
| |
|
||||
| Definitions and types for Lian Li SL Infinity |
|
||||
| |
|
||||
| Simon McKenna 2023-20-21 |
|
||||
| Will Kennedy 01/17/2023 |
|
||||
| Oliver P 04/26/2022 |
|
||||
| Credit to Luca Lovisa for original work. |
|
||||
\*----------------------------------------------*/
|
||||
/*---------------------------------------------------------*\
|
||||
| LianLiUniHubSLInfinityController.h |
|
||||
| |
|
||||
| Driver for Lian Li SL Infinity Uni Hub |
|
||||
| |
|
||||
| Simon McKenna 21 Oct 2023 |
|
||||
| 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. |
|
||||
|
|
@ -24,7 +26,6 @@
|
|||
| Definitions related to zone Sizes |
|
||||
\*----------------------------------------------------------------------------*/
|
||||
|
||||
|
||||
enum
|
||||
{
|
||||
UNIHUB_SLINF_CHANNEL_COUNT = 0x08, /* Channel count */
|
||||
|
|
|
|||
|
|
@ -1,18 +1,19 @@
|
|||
/*-----------------------------------------*\
|
||||
| RGBController_LianLiUniHubSLInfinity.cpp |
|
||||
| |
|
||||
| Generic RGB Interface for Lian Li Uni |
|
||||
| Hub SLINF USB controller driver |
|
||||
| |
|
||||
| Simon McKenna 2023-20-21 |
|
||||
| Will Kennedy 01/17/2023 |
|
||||
| Oliver P 04/26/2022 |
|
||||
| Credit to Luca Lovisa for original work. |
|
||||
\*-----------------------------------------*/
|
||||
|
||||
#include "RGBController_LianLiUniHubSLInfinity.h"
|
||||
/*---------------------------------------------------------*\
|
||||
| RGBController_LianLiUniHubSLInfinity.cpp |
|
||||
| |
|
||||
| RGBController for Lian Li SL Infinity Uni Hub |
|
||||
| |
|
||||
| Simon McKenna 21 Oct 2023 |
|
||||
| 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_LianLiUniHubSLInfinity.h"
|
||||
|
||||
/**------------------------------------------------------------------*\
|
||||
@name Lian Li Uni Hub SL Infinity
|
||||
|
|
|
|||
|
|
@ -1,20 +1,21 @@
|
|||
/*-----------------------------------------*\
|
||||
| RGBController_LianLiUniHubSLInfinity.h |
|
||||
| |
|
||||
| Generic RGB Interface for Lian Li Uni |
|
||||
| Hub SL Infinity USB controller driver |
|
||||
| |
|
||||
| Simon McKenna 2023-20-21 |
|
||||
| Will Kennedy 01/17/2023 |
|
||||
| Oliver P 04/26/2022 |
|
||||
| Credit to Luca Lovisa for original work. |
|
||||
\*-----------------------------------------*/
|
||||
/*---------------------------------------------------------*\
|
||||
| RGBController_LianLiUniHubSLInfinity.h |
|
||||
| |
|
||||
| RGBController for Lian Li SL Infinity Uni Hub |
|
||||
| |
|
||||
| Simon McKenna 21 Oct 2023 |
|
||||
| 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 "LianLiUniHubSLInfinityController.h"
|
||||
#include "RGBController.h"
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue