Update Das Keyboard controller files to new standardized header comment

This commit is contained in:
Adam Honse
2024-05-15 11:53:02 -05:00
parent 1630d50e72
commit e4fb4f53ae
5 changed files with 53 additions and 36 deletions

View File

@@ -1,11 +1,13 @@
/*-----------------------------------------*\
| DasKeyboardController.cpp |
| |
| Driver for Das Keyboard RGB keyboard |
| lighting controller |
| |
| Frank Niessen (denk_mal) 12/16/2020 |
\*-----------------------------------------*/
/*---------------------------------------------------------*\
| DasKeyboardController.cpp |
| |
| Driver for Das Keyboard keyboard |
| |
| Frank Niessen (denk_mal) 16 Dec 2020 |
| |
| This file is part of the OpenRGB project |
| SPDX-License-Identifier: GPL-2.0-only |
\*---------------------------------------------------------*/
#include <cstring>
#include "DasKeyboardController.h"

View File

@@ -1,18 +1,19 @@
/*-----------------------------------------*\
| DasKeyboardController.h |
| |
| Definitions and types for Das Keyboard |
| RGB keyboard lighting controller |
| |
| Frank Niessen (denk_mal) 12/16/2020 |
\*-----------------------------------------*/
/*---------------------------------------------------------*\
| DasKeyboardController.h |
| |
| Driver for Das Keyboard keyboard |
| |
| Frank Niessen (denk_mal) 16 Dec 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"
class DasKeyboardController
{

View File

@@ -1,3 +1,14 @@
/*---------------------------------------------------------*\
| DasKeyboardControllerDetect.cpp |
| |
| Detector for Das Keyboard keyboard |
| |
| Frank Niessen (denk_mal) 16 Dec 2020 |
| |
| This file is part of the OpenRGB project |
| SPDX-License-Identifier: GPL-2.0-only |
\*---------------------------------------------------------*/
#include "Detector.h"
#include "DasKeyboardController.h"
#include "RGBController.h"

View File

@@ -1,11 +1,13 @@
/*-----------------------------------------*\
| RGBController_DasKeyboard.cpp |
| |
| Generic RGB Interface for Das Keyboard |
| RGB keyboard devices |
| |
| Frank Niessen (denk_mal) 12/16/2020 |
\*-----------------------------------------*/
/*---------------------------------------------------------*\
| RGBController_DasKeyboard.cpp |
| |
| RGBController for Das Keyboard keyboard |
| |
| Frank Niessen (denk_mal) 16 Dec 2020 |
| |
| This file is part of the OpenRGB project |
| SPDX-License-Identifier: GPL-2.0-only |
\*---------------------------------------------------------*/
#include "RGBControllerKeyNames.h"
#include "RGBController_DasKeyboard.h"

View File

@@ -1,11 +1,13 @@
/*-----------------------------------------*\
| RGBController_DasKeyboard.h |
| |
| Generic RGB Interface for Das Keyboard |
| RGB keyboard devices |
| |
| Frank Niessen (denk_mal) 12/16/2020 |
\*-----------------------------------------*/
/*---------------------------------------------------------*\
| RGBController_DasKeyboard.h |
| |
| RGBController for Das Keyboard keyboard |
| |
| Frank Niessen (denk_mal) 16 Dec 2020 |
| |
| This file is part of the OpenRGB project |
| SPDX-License-Identifier: GPL-2.0-only |
\*---------------------------------------------------------*/
#pragma once
@@ -20,7 +22,6 @@ enum
DAS_KEYBOARD_MODE_SPECTRUM_CYCLE = 0x14
};
class RGBController_DasKeyboard : public RGBController
{
public: