Update Elgato Key Light controller files to new standardized header comment

This commit is contained in:
Adam Honse 2024-05-16 11:43:53 -05:00
parent a51febd0f7
commit 8a77fe5525
5 changed files with 52 additions and 27 deletions

View file

@ -1,12 +1,17 @@
/*---------------------------------------------------------*\
| Driver for Elgato Key Light |
| ElgatoKeyLightController.cpp |
| |
| Monks (imtherealestmonkey@gmail.com), 11/03/2021 |
| Driver for Elgato Key Light |
| |
| Monks (imtherealestmonkey@gmail.com), 03 Nov 2021 |
| |
| This file is part of the OpenRGB project |
| SPDX-License-Identifier: GPL-2.0-only |
\*---------------------------------------------------------*/
#include <iostream>
#include "ElgatoKeyLightController.h"
#include "json.hpp"
#include <iostream>
using json = nlohmann::json;

View file

@ -1,19 +1,23 @@
/*---------------------------------------------------------*\
| Definitions for Elgato Key Light |
| ElgatoKeyLightController.h |
| |
| Monks (imtherealestmonkey@gmail.com), 11/11/2021 |
| Driver for Elgato Key Light |
| |
| Monks (imtherealestmonkey@gmail.com), 11 Nov 2021 |
| |
| This file is part of the OpenRGB project |
| SPDX-License-Identifier: GPL-2.0-only |
\*---------------------------------------------------------*/
#include "RGBController.h"
#include "net_port.h"
#include "hsv.h"
#pragma once
#include <cmath>
#include <string>
#include <thread>
#include <vector>
#pragma once
#include "RGBController.h"
#include "net_port.h"
#include "hsv.h"
class ElgatoKeyLightController
{

View file

@ -1,11 +1,20 @@
/*---------------------------------------------------------*\
| ElgatoKeyLightControllerDetect.cpp |
| |
| Detector for Elgato Key Light |
| |
| This file is part of the OpenRGB project |
| SPDX-License-Identifier: GPL-2.0-only |
\*---------------------------------------------------------*/
#include <stdio.h>
#include <stdlib.h>
#include <vector>
#include "Detector.h"
#include "ElgatoKeyLightController.h"
#include "RGBController.h"
#include "RGBController_ElgatoKeyLight.h"
#include "SettingsManager.h"
#include <vector>
#include <stdio.h>
#include <stdlib.h>
/******************************************************************************************\
* *

View file

@ -1,10 +1,13 @@
/*------------------------------------------------*\
| RGBController_ElgatoKeyLight.cpp |
| |
| Generic RGB Interface for ElgatoKeyLight |
| |
| Monks (@iamtherealestmonkey) 11/03/2021 |
\*------------------------------------------------*/
/*---------------------------------------------------------*\
| RGBController_ElgatoKeyLight.cpp |
| |
| RGBController for Elgato Key Light |
| |
| Monks (@iamtherealestmonkey) 03 Nov 2021 |
| |
| This file is part of the OpenRGB project |
| SPDX-License-Identifier: GPL-2.0-only |
\*---------------------------------------------------------*/
#include "RGBController_ElgatoKeyLight.h"
#include "hsv.h"

View file

@ -1,12 +1,16 @@
/*--------------------------------------------------*\
| RGBController_ElgatoKeyLight.h |
| |
| Generic RGB Interface for Elgato KeyLight |
| |
| Monks (imtherealestmonkey@gmail.com) 11/1/2021 |
\*--------------------------------------------------*/
/*---------------------------------------------------------*\
| RGBController_ElgatoKeyLight.h |
| |
| RGBController for Elgato Key Light |
| |
| Monks (@iamtherealestmonkey) 01 Nov 2021 |
| |
| This file is part of the OpenRGB project |
| SPDX-License-Identifier: GPL-2.0-only |
\*---------------------------------------------------------*/
#pragma once
#include "RGBController.h"
#include "ElgatoKeyLightController.h"