Update ZET Edge Air Pro controller files to new standardized header comment

This commit is contained in:
Adam Honse 2024-06-30 17:50:58 -05:00
parent b62c7fb432
commit ce1cdf62aa
5 changed files with 57 additions and 36 deletions

View file

@ -1,15 +1,17 @@
/*-----------------------------------------*\
| RGBController_ZETEdgeAirPro.cpp |
| |
| Generic RGB Interface for OpenRGB |
| ZET Edge Air Pro RGB USB Driver |
| |
| Guimard Morgan (morg) 1/29/2022 |
\*-----------------------------------------*/
#include "RGBController_ZETEdgeAirPro.h"
/*---------------------------------------------------------*\
| RGBController_ZETEdgeAirPro.cpp |
| |
| RGBController for ZET Edge Air Pro |
| |
| Morgan Guimard (morg) 29 Jan 2022 |
| |
| This file is part of the OpenRGB project |
| SPDX-License-Identifier: GPL-2.0-only |
\*---------------------------------------------------------*/
#include <thread>
#include <chrono>
#include <thread>
#include "RGBController_ZETEdgeAirPro.h"
/**------------------------------------------------------------------*\
@name ZET Edge Air Pro

View file

@ -1,11 +1,13 @@
/*-----------------------------------------*\
| RGBController_ZETEdgeAirPro.h |
| |
| Generic RGB Interface for OpenRGB |
| ZET Edge Air Pro RGB USB Driver |
| |
| Guimard Morgan (morg) 1/29/2022 |
\*-----------------------------------------*/
/*---------------------------------------------------------*\
| RGBController_ZETEdgeAirPro.h |
| |
| RGBController for ZET Edge Air Pro |
| |
| Morgan Guimard (morg) 29 Jan 2022 |
| |
| This file is part of the OpenRGB project |
| SPDX-License-Identifier: GPL-2.0-only |
\*---------------------------------------------------------*/
#pragma once

View file

@ -1,13 +1,16 @@
/*-----------------------------------------*\
| ZETEdgeAirProController.cpp |
| |
| Driver for ZET Edge Air Pro mouse |
| lighting controller |
| |
| Guimard Morgan (morg) 1/29/2022 |
\*-----------------------------------------*/
#include "ZETEdgeAirProController.h"
/*---------------------------------------------------------*\
| ZETEdgeAirProController.cpp |
| |
| Driver for ZET Edge Air Pro |
| |
| Morgan Guimard (morg) 29 Jan 2022 |
| |
| This file is part of the OpenRGB project |
| SPDX-License-Identifier: GPL-2.0-only |
\*---------------------------------------------------------*/
#include <string.h>
#include "ZETEdgeAirProController.h"
ZETEdgeAirProController::ZETEdgeAirProController(hid_device* dev_handle, const hid_device_info& info)
{

View file

@ -1,16 +1,19 @@
/*-----------------------------------------*\
| ZETEdgeAirProController.h |
| |
| Driver for ZET Edge Air Pro mouse |
| lighting controller - header file |
| |
| Guimard Morgan (morg) 1/29/2022 |
\*-----------------------------------------*/
/*---------------------------------------------------------*\
| ZETEdgeAirProController.h |
| |
| Driver for ZET Edge Air Pro |
| |
| Morgan Guimard (morg) 29 Jan 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 ZET_EDGE_AIR_PRO_PACKET_SIZE 17
#define ZET_EDGE_AIR_PRO_REPORT_ID 0x08

View file

@ -1,3 +1,14 @@
/*---------------------------------------------------------*\
| ZETEdgeAirProControllerDetect.cpp |
| |
| Detector for ZET Edge Air Pro |
| |
| Morgan Guimard (morg) 29 Jan 2022 |
| |
| This file is part of the OpenRGB project |
| SPDX-License-Identifier: GPL-2.0-only |
\*---------------------------------------------------------*/
#include "Detector.h"
#include "ZETEdgeAirProController.h"
#include "RGBController.h"