Update EK controller files to new standardized header comment

This commit is contained in:
Adam Honse 2024-05-16 11:39:32 -05:00
parent acc85f8891
commit a51febd0f7
5 changed files with 55 additions and 42 deletions

View file

@ -1,11 +1,13 @@
/*-------------------------------------------------------------------*\
| EKController.cpp |
| |
| Driver for EK Loop Connect |
| |
| Chris M (Dr_No) 16th Jul 2020 |
| |
\*-------------------------------------------------------------------*/
/*---------------------------------------------------------*\
| EKController.cpp |
| |
| Driver for EK Loop Connect |
| |
| Chris M (Dr_No) 16 Jul 2020 |
| |
| This file is part of the OpenRGB project |
| SPDX-License-Identifier: GPL-2.0-only |
\*---------------------------------------------------------*/
#include "EKController.h"

View file

@ -1,14 +1,15 @@
/*-------------------------------------------------------------------*\
| EKController.h |
| |
| Driver for EK Loop Connect |
| |
| Chris M (Dr_No) 16th Jul 2020 |
| |
\*-------------------------------------------------------------------*/
/*---------------------------------------------------------*\
| EKController.h |
| |
| Driver for EK Loop Connect |
| |
| Chris M (Dr_No) 16 Jul 2020 |
| |
| This file is part of the OpenRGB project |
| SPDX-License-Identifier: GPL-2.0-only |
\*---------------------------------------------------------*/
#ifndef EKCONTROLLER_H
#define EKCONTROLLER_H
#pragma once
#include <string>
#include <hidapi/hidapi.h>
@ -80,5 +81,3 @@ private:
void SendUpdate();
};
#endif // EKCONTROLLER_H

View file

@ -1,8 +1,19 @@
/*---------------------------------------------------------*\
| EKControllerDetect.cpp |
| |
| Detector for EK Loop Connect |
| |
| Chris M (Dr_No) 16 Jul 2020 |
| |
| This file is part of the OpenRGB project |
| SPDX-License-Identifier: GPL-2.0-only |
\*---------------------------------------------------------*/
#include <hidapi/hidapi.h>
#include "Detector.h"
#include "EKController.h"
#include "RGBController.h"
#include "RGBController_EKController.h"
#include <hidapi/hidapi.h>
#define EK_VID 0x0483
#define EK_LOOP_CONNECT 0x5750

View file

@ -1,11 +1,13 @@
/*-------------------------------------------------------------------*\
| RGBController_EKController.cpp |
| |
| Driver for EK Loop Connect |
| |
| Chris M (Dr_No) 16th Jul 2020 |
| |
\*-------------------------------------------------------------------*/
/*---------------------------------------------------------*\
| RGBController_EKController.cpp |
| |
| RGBController for EK Loop Connect |
| |
| Chris M (Dr_No) 16 Jul 2020 |
| |
| This file is part of the OpenRGB project |
| SPDX-License-Identifier: GPL-2.0-only |
\*---------------------------------------------------------*/
#include "RGBController_EKController.h"

View file

@ -1,17 +1,18 @@
/*-------------------------------------------------------------------*\
| RGBController_EKController.h |
| |
| Driver for EK Loop Connect |
| |
| Chris M (Dr_No) 16th Jul 2020 |
| |
\*-------------------------------------------------------------------*/
/*---------------------------------------------------------*\
| RGBController_EKController.h |
| |
| RGBController for EK Loop Connect |
| |
| Chris M (Dr_No) 16 Jul 2020 |
| |
| This file is part of the OpenRGB project |
| SPDX-License-Identifier: GPL-2.0-only |
\*---------------------------------------------------------*/
#ifndef RGBCONTROLLER_EKCONTROLLER_H
#define RGBCONTROLLER_EKCONTROLLER_H
#pragma once
#include "RGBController.h"
#include "Controllers/EKController/EKController.h"
#include "EKController.h"
class RGBController_EKController : public RGBController
{
@ -31,5 +32,3 @@ public:
private:
EKController* controller;
};
#endif // RGBCONTROLLER_EKCONTROLLER_H