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

View file

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

View file

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

View file

@ -1,20 +1,22 @@
/*-------------------------------------------------------------------*\
| RoccatKoneAimoController.h |
| |
| Driver for Roccat Kone Aimo Mouse |
| |
| Thibaud M (enlight3d) 17th Nov 2020 |
| |
\*-------------------------------------------------------------------*/
/*---------------------------------------------------------*\
| RoccatKoneAimoController.h |
| |
| Driver for Roccat Kone Aimo |
| |
| Thibaud M (enlight3d) 17 Nov 2020 |
| |
| This file is part of the OpenRGB project |
| SPDX-License-Identifier: GPL-2.0-only |
\*---------------------------------------------------------*/
#pragma once
#include "RGBController.h"
#include <string>
#include <array>
#include <map>
#include <string>
#include <vector>
#include <hidapi/hidapi.h>
#include "RGBController.h"
#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
void SendInit();
};
};