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

This commit is contained in:
Adam Honse 2024-05-25 13:14:06 -05:00
parent 58f9943151
commit edbcc38518
5 changed files with 49 additions and 44 deletions

View file

@ -1,16 +1,17 @@
/*-----------------------------------------*\
| LianLiUniHubALController.cpp |
| |
| Driver for Lian Li Uni Hub AL USB |
| lighting controller |
| |
| Oliver P 04/26/2022 |
| Credit to Luca Lovisa for original work. |
\*-----------------------------------------*/
#include "LianLiUniHubALController.h"
/*---------------------------------------------------------*\
| LianLiUniHubALController.cpp |
| |
| Driver for Lian Li AL Uni Hub |
| |
| 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 "LianLiUniHubALController.h"
using namespace std::chrono_literals;

View file

@ -1,18 +1,20 @@
/*-----------------------------------------*\
| LianLiHubALController.h |
| |
| Definitions and types for Lian Li AL120 |
| |
| Oliver P 04/26/2022 |
| Credit to Luca Lovisa for original work. |
\*-----------------------------------------*/
/*---------------------------------------------------------*\
| LianLiUniHubALController.h |
| |
| Driver for Lian Li AL Uni Hub |
| |
| 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,16 +1,17 @@
/*-----------------------------------------*\
| RGBController_LianLiUniHubAL.cpp |
| |
| Generic RGB Interface for Lian Li Uni |
| Hub AL USB controller driver |
| |
| Oliver P 04/26/2022 |
| Credit to Luca Lovisa for original work. |
\*-----------------------------------------*/
#include "RGBController_LianLiUniHubAL.h"
/*---------------------------------------------------------*\
| RGBController_LianLiUniHubAL.cpp |
| |
| RGBController for Lian Li AL Uni Hub |
| |
| 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_LianLiUniHubAL.h"
//0xFFFFFFFF indicates an unused entry in matrix
#define NA 0xFFFFFFFF

View file

@ -1,18 +1,19 @@
/*-----------------------------------------*\
| RGBController_LianLiUniHubAL.h |
| |
| Generic RGB Interface for Lian Li Uni |
| Hub AL USB controller driver |
| |
| Oliver P 04/26/2022 |
| Credit to Luca Lovisa for original work. |
\*-----------------------------------------*/
/*---------------------------------------------------------*\
| RGBController_LianLiUniHub_AL.h |
| |
| RGBController for Lian Li AL Uni Hub |
| |
| 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 "LianLiUniHubALController.h"
#include "RGBController.h"

View file

@ -1,7 +1,7 @@
/*---------------------------------------------------------*\
| RGBController_LianLiUniHub_AL10.h |
| |
| RGBController for Lian Li AL10 Uni Hub |
| RGBController for Lian Li AL Uni Hub |
| |
| Oliver P 05 May 2022 |
| Credit to Luca Lovisa for original work |