Update Redragon controller files to new standardized header comment
This commit is contained in:
parent
34ce3b928b
commit
a4a3a7b970
5 changed files with 60 additions and 29 deletions
|
|
@ -1,10 +1,13 @@
|
|||
/*-----------------------------------------*\
|
||||
| RGBController_RedragonMouse.cpp |
|
||||
| |
|
||||
| Generic RGB Interface for Redragon Mouse |
|
||||
| |
|
||||
| Adam Honse (CalcProgrammer1) 3/25/2020 |
|
||||
\*-----------------------------------------*/
|
||||
/*---------------------------------------------------------*\
|
||||
| RGBController_RedragonMouse.cpp |
|
||||
| |
|
||||
| RGBController for Redragon mouse |
|
||||
| |
|
||||
| Adam Honse (CalcProgrammer1) 25 Mar 2020 |
|
||||
| |
|
||||
| This file is part of the OpenRGB project |
|
||||
| SPDX-License-Identifier: GPL-2.0-only |
|
||||
\*---------------------------------------------------------*/
|
||||
|
||||
#include "RGBController_RedragonMouse.h"
|
||||
|
||||
|
|
|
|||
|
|
@ -1,10 +1,14 @@
|
|||
/*-----------------------------------------*\
|
||||
| RGBController_RedragonMouse.h |
|
||||
| |
|
||||
| Generic RGB Interface for Redragon Mouse |
|
||||
| |
|
||||
| Adam Honse (CalcProgrammer1) 3/25/2020 |
|
||||
\*-----------------------------------------*/
|
||||
/*---------------------------------------------------------*\
|
||||
| RGBController_RedragonMouse.h |
|
||||
| |
|
||||
| RGBController for Redragon mouse |
|
||||
| |
|
||||
| Adam Honse (CalcProgrammer1) 25 Mar 2020 |
|
||||
| |
|
||||
| This file is part of the OpenRGB project |
|
||||
| SPDX-License-Identifier: GPL-2.0-only |
|
||||
\*---------------------------------------------------------*/
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "RGBController.h"
|
||||
|
|
|
|||
|
|
@ -1,9 +1,20 @@
|
|||
/*---------------------------------------------------------*\
|
||||
| RedragonControllerDetect.cpp |
|
||||
| |
|
||||
| Detector for Redragon devices |
|
||||
| |
|
||||
| Adam Honse (CalcProgrammer1) 15 Mar 2020 |
|
||||
| |
|
||||
| This file is part of the OpenRGB project |
|
||||
| SPDX-License-Identifier: GPL-2.0-only |
|
||||
\*---------------------------------------------------------*/
|
||||
|
||||
#include <vector>
|
||||
#include <hidapi/hidapi.h>
|
||||
#include "Detector.h"
|
||||
#include "RedragonMouseController.h"
|
||||
#include "RGBController.h"
|
||||
#include "RGBController_RedragonMouse.h"
|
||||
#include <vector>
|
||||
#include <hidapi/hidapi.h>
|
||||
|
||||
/*-----------------------------------------------------*\
|
||||
| Mouse product IDs |
|
||||
|
|
|
|||
|
|
@ -1,6 +1,16 @@
|
|||
#include "RedragonMouseController.h"
|
||||
/*---------------------------------------------------------*\
|
||||
| RedragonMouseController.cpp |
|
||||
| |
|
||||
| Driver for Redragon mouse |
|
||||
| |
|
||||
| Adam Honse (CalcProgrammer1) 15 Mar 2020 |
|
||||
| |
|
||||
| This file is part of the OpenRGB project |
|
||||
| SPDX-License-Identifier: GPL-2.0-only |
|
||||
\*---------------------------------------------------------*/
|
||||
|
||||
#include <cstring>
|
||||
#include "RedragonMouseController.h"
|
||||
|
||||
RedragonMouseController::RedragonMouseController(hid_device* dev_handle, const char* path)
|
||||
{
|
||||
|
|
|
|||
|
|
@ -1,11 +1,14 @@
|
|||
/*-----------------------------------------*\
|
||||
| RedragonMouseController.h |
|
||||
| |
|
||||
| Definitions and types for Redragon Mouse |
|
||||
| lighting controller |
|
||||
| |
|
||||
| Adam Honse (CalcProgrammer1) 3/15/2020 |
|
||||
\*-----------------------------------------*/
|
||||
/*---------------------------------------------------------*\
|
||||
| RedragonMouseController.h |
|
||||
| |
|
||||
| Driver for Redragon mouse |
|
||||
| |
|
||||
| Adam Honse (CalcProgrammer1) 15 Mar 2020 |
|
||||
| |
|
||||
| This file is part of the OpenRGB project |
|
||||
| SPDX-License-Identifier: GPL-2.0-only |
|
||||
\*---------------------------------------------------------*/
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <string>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue