Update Roccat Kone Aimo controller files to new standardized header comment
This commit is contained in:
parent
86010b3e8e
commit
b3379e8ef3
4 changed files with 45 additions and 37 deletions
|
|
@ -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"
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -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"
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -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)
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -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();
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue