Update Ducky controller files to new standardized header comment

This commit is contained in:
Adam Honse 2024-05-16 11:29:50 -05:00
parent d78b8d5d40
commit 4f870489ad
5 changed files with 57 additions and 38 deletions

View file

@ -1,11 +1,13 @@
/*-----------------------------------------*\
| DuckyKeyboardController.cpp |
| |
| Driver for Ducky RGB keyboardlighting |
| controller |
| |
| Adam Honse (CalcProgrammer1) 7/4/2020 |
\*-----------------------------------------*/
/*---------------------------------------------------------*\
| DuckyKeyboardController.cpp |
| |
| Driver for Ducky keyboard |
| |
| Adam Honse (CalcProgrammer1) 04 Jul 2020 |
| |
| This file is part of the OpenRGB project |
| SPDX-License-Identifier: GPL-2.0-only |
\*---------------------------------------------------------*/
#include <cstring>
#include "DuckyKeyboardController.h"

View file

@ -1,18 +1,19 @@
/*-----------------------------------------*\
| DuckyKeyboardController.h |
| |
| Definitions and types for Ducky RGB |
| keyboard lighting controller |
| |
| Adam Honse (CalcProgrammer1) 7/4/2020 |
\*-----------------------------------------*/
/*---------------------------------------------------------*\
| DuckyKeyboardController.h |
| |
| Driver for Ducky keyboard |
| |
| Adam Honse (CalcProgrammer1) 04 Jul 2020 |
| |
| 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"
/*-----------------------------------------------------*\
| Ducky vendor ID |
@ -34,7 +35,7 @@ public:
std::string GetDeviceLocation();
std::string GetSerialString();
unsigned short GetUSBPID();
void SendColors
(
unsigned char* color_data,

View file

@ -1,3 +1,14 @@
/*---------------------------------------------------------*\
| DuckyKeyboardControllerDetect.cpp |
| |
| Detector for Ducky keyboard |
| |
| Adam Honse (CalcProgrammer1) 04 Jul 2020 |
| |
| This file is part of the OpenRGB project |
| SPDX-License-Identifier: GPL-2.0-only |
\*---------------------------------------------------------*/
#include "Detector.h"
#include "DuckyKeyboardController.h"
#include "RGBController.h"

View file

@ -1,11 +1,13 @@
/*-----------------------------------------*\
| RGBController_DuckyKeyboard.cpp |
| |
| Generic RGB Interface for Ducky RGB |
| keyboard devices |
| |
| Adam Honse (CalcProgrammer1) 7/4/2020 |
\*-----------------------------------------*/
/*---------------------------------------------------------*\
| RGBController_DuckyKeyboard.cpp |
| |
| RGBController for Ducky keyboard |
| |
| Adam Honse (CalcProgrammer1) 04 Jul 2020 |
| |
| This file is part of the OpenRGB project |
| SPDX-License-Identifier: GPL-2.0-only |
\*---------------------------------------------------------*/
#include "RGBControllerKeyNames.h"
#include "RGBController_DuckyKeyboard.h"

View file

@ -1,13 +1,16 @@
/*-----------------------------------------*\
| RGBController_DuckyKeyboard.h |
| |
| Generic RGB Interface for Ducky RGB |
| keyboard devices |
| |
| Adam Honse (CalcProgrammer1) 7/4/2020 |
\*-----------------------------------------*/
/*---------------------------------------------------------*\
| RGBController_DuckyKeyboard.h |
| |
| RGBController for Ducky keyboard |
| |
| Adam Honse (CalcProgrammer1) 04 Jul 2020 |
| |
| This file is part of the OpenRGB project |
| SPDX-License-Identifier: GPL-2.0-only |
\*---------------------------------------------------------*/
#pragma once
#include "RGBController.h"
#include "DuckyKeyboardController.h"
@ -20,7 +23,7 @@ public:
void SetupZones();
void ResizeZone(int zone, int new_size);
void DeviceUpdateLEDs();
void UpdateZoneLEDs(int zone);
void UpdateSingleLED(int led);
@ -29,4 +32,4 @@ public:
private:
DuckyKeyboardController* controller;
};
};