Update Ionico controller files to new standardized header comment
This commit is contained in:
parent
13ba7b19ea
commit
680821f164
5 changed files with 55 additions and 34 deletions
|
|
@ -1,13 +1,16 @@
|
|||
/*-----------------------------------------*\
|
||||
| IonicoController.cpp |
|
||||
| |
|
||||
| Driver for the Ionico-II-17 lighting |
|
||||
| controller |
|
||||
| |
|
||||
| Lucas Strafe 31/12/2022 |
|
||||
\*-----------------------------------------*/
|
||||
#include "IonicoController.h"
|
||||
/*---------------------------------------------------------*\
|
||||
| IonicoController.cpp |
|
||||
| |
|
||||
| Driver for Ionico-II-17 |
|
||||
| |
|
||||
| Lucas Strafe 31 Dec 2022 |
|
||||
| |
|
||||
| This file is part of the OpenRGB project |
|
||||
| SPDX-License-Identifier: GPL-2.0-only |
|
||||
\*---------------------------------------------------------*/
|
||||
|
||||
#include <string.h>
|
||||
#include "IonicoController.h"
|
||||
|
||||
IonicoController::IonicoController(hid_device* dev_handle, const hid_device_info& info, const unsigned short pid)
|
||||
{
|
||||
|
|
|
|||
|
|
@ -1,8 +1,19 @@
|
|||
/*---------------------------------------------------------*\
|
||||
| IonicoController.h |
|
||||
| |
|
||||
| Driver for Ionico-II-17 |
|
||||
| |
|
||||
| Lucas Strafe 31 Dec 2022 |
|
||||
| |
|
||||
| This file is part of the OpenRGB project |
|
||||
| SPDX-License-Identifier: GPL-2.0-only |
|
||||
\*---------------------------------------------------------*/
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "RGBController.h"
|
||||
#include <string>
|
||||
#include <hidapi/hidapi.h>
|
||||
#include "RGBController.h"
|
||||
|
||||
#define IONICO_REPORT_SIZE 9
|
||||
#define IONICO_DIRECT_REPORT_SIZE 65
|
||||
|
|
|
|||
|
|
@ -1,11 +1,13 @@
|
|||
/*-----------------------------------------*\
|
||||
| IonicoControllerDetect.cpp |
|
||||
| |
|
||||
| Driver for the Ionico-II-17 lighting |
|
||||
| controller |
|
||||
| |
|
||||
| Lucas Strafe 31/12/2022 |
|
||||
\*-----------------------------------------*/
|
||||
/*---------------------------------------------------------*\
|
||||
| IonicoControllerDetect.cpp |
|
||||
| |
|
||||
| Detector for Ionico-II-17 |
|
||||
| |
|
||||
| Lucas Strafe 31 Dec 2022 |
|
||||
| |
|
||||
| This file is part of the OpenRGB project |
|
||||
| SPDX-License-Identifier: GPL-2.0-only |
|
||||
\*---------------------------------------------------------*/
|
||||
|
||||
#include "Detector.h"
|
||||
#include "RGBController.h"
|
||||
|
|
|
|||
|
|
@ -1,11 +1,13 @@
|
|||
/*-----------------------------------------*\
|
||||
| RGBController_Ionico.cpp |
|
||||
| |
|
||||
| Driver for the Ionico-II-17 lighting |
|
||||
| controller |
|
||||
| |
|
||||
| Lucas Strafe 31/12/2022 |
|
||||
\*-----------------------------------------*/
|
||||
/*---------------------------------------------------------*\
|
||||
| RGBController_Ionico.cpp |
|
||||
| |
|
||||
| RGBController for Ionico-II-17 |
|
||||
| |
|
||||
| Lucas Strafe 31 Dec 2022 |
|
||||
| |
|
||||
| This file is part of the OpenRGB project |
|
||||
| SPDX-License-Identifier: GPL-2.0-only |
|
||||
\*---------------------------------------------------------*/
|
||||
|
||||
#include "RGBController_Ionico.h"
|
||||
|
||||
|
|
|
|||
|
|
@ -1,11 +1,14 @@
|
|||
/*-----------------------------------------*\
|
||||
| RGBController_Ionico.h |
|
||||
| |
|
||||
| Driver for the Ionico-II-17 lighting |
|
||||
| controller |
|
||||
| |
|
||||
| Lucas Strafe 31/12/2022 |
|
||||
\*-----------------------------------------*/
|
||||
/*---------------------------------------------------------*\
|
||||
| RGBController_Ionico.h |
|
||||
| |
|
||||
| RGBController for Ionico-II-17 |
|
||||
| |
|
||||
| Lucas Strafe 31 Dec 2022 |
|
||||
| |
|
||||
| This file is part of the OpenRGB project |
|
||||
| SPDX-License-Identifier: GPL-2.0-only |
|
||||
\*---------------------------------------------------------*/
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "RGBController.h"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue