Update Roccat Kone Aimo controller files to new standardized header comment

This commit is contained in:
Adam Honse 2024-06-14 11:34:22 -05:00
parent 86010b3e8e
commit b3379e8ef3
4 changed files with 45 additions and 37 deletions

View file

@ -1,11 +1,13 @@
/*-----------------------------------------*\ /*---------------------------------------------------------*\
| RGBController_RoccatKoneAimo.cpp | | RGBController_RoccatKoneAimo.cpp |
| | | |
| Generic RGB Interface for OpenRGB | | RGBController for Roccat Kone Aimo |
| | | |
| | | Thibaud M (enlight3d) 17 Nov 2020 |
| Thibaud M (enlight3d) 17/11/2020 | | |
\*-----------------------------------------*/ | This file is part of the OpenRGB project |
| SPDX-License-Identifier: GPL-2.0-only |
\*---------------------------------------------------------*/
#include "RGBController_RoccatKoneAimo.h" #include "RGBController_RoccatKoneAimo.h"

View file

@ -1,13 +1,16 @@
/*-----------------------------------------*\ /*---------------------------------------------------------*\
| RGBController_RoccatKoneAimo.h | | RGBController_RoccatKoneAimo.h |
| | | |
| Generic RGB Interface for Roccat Kone | | RGBController for Roccat Kone Aimo |
| Aimo controller | | |
| | | Thibaud M (enlight3d) 17 Nov 2020 |
| Thibaud M (enlight3d) 17/11/2020 | | |
\*-----------------------------------------*/ | This file is part of the OpenRGB project |
| SPDX-License-Identifier: GPL-2.0-only |
\*---------------------------------------------------------*/
#pragma once #pragma once
#include "RGBController.h" #include "RGBController.h"
#include "RoccatKoneAimoController.h" #include "RoccatKoneAimoController.h"

View file

@ -1,15 +1,16 @@
/*-------------------------------------------------------------------*\ /*---------------------------------------------------------*\
| RoccatKoneAimoController.cpp | | RoccatKoneAimoController.cpp |
| | | |
| Driver for Roccat Kone Aimo Mouse | | Driver for Roccat Kone Aimo |
| | | |
| Thibaud M (enlight3d) 17th Nov 2020 | | Thibaud M (enlight3d) 17 Nov 2020 |
| | | |
\*-------------------------------------------------------------------*/ | This file is part of the OpenRGB project |
| SPDX-License-Identifier: GPL-2.0-only |
#include "RoccatKoneAimoController.h" \*---------------------------------------------------------*/
#include <cstring> #include <cstring>
#include "RoccatKoneAimoController.h"
RoccatKoneAimoController::RoccatKoneAimoController(hid_device* dev_handle, char *_path) RoccatKoneAimoController::RoccatKoneAimoController(hid_device* dev_handle, char *_path)
{ {

View file

@ -1,20 +1,22 @@
/*-------------------------------------------------------------------*\ /*---------------------------------------------------------*\
| RoccatKoneAimoController.h | | RoccatKoneAimoController.h |
| | | |
| Driver for Roccat Kone Aimo Mouse | | Driver for Roccat Kone Aimo |
| | | |
| Thibaud M (enlight3d) 17th Nov 2020 | | Thibaud M (enlight3d) 17 Nov 2020 |
| | | |
\*-------------------------------------------------------------------*/ | This file is part of the OpenRGB project |
| SPDX-License-Identifier: GPL-2.0-only |
\*---------------------------------------------------------*/
#pragma once #pragma once
#include "RGBController.h"
#include <string>
#include <array> #include <array>
#include <map> #include <map>
#include <string>
#include <vector> #include <vector>
#include <hidapi/hidapi.h> #include <hidapi/hidapi.h>
#include "RGBController.h"
#define NUM_LEDS 11 #define NUM_LEDS 11
@ -54,4 +56,4 @@ private:
unsigned char usb_colors_buf[USB_COLOR_BUFF_LEN]; // USB buffer to be sent everytime we update mouse's LEDs unsigned char usb_colors_buf[USB_COLOR_BUFF_LEN]; // USB buffer to be sent everytime we update mouse's LEDs
void SendInit(); void SendInit();
}; };