Update Elgato Light Strip controller files to new standardized header comment

This commit is contained in:
Adam Honse 2024-05-16 11:48:14 -05:00
parent 8a77fe5525
commit d9866e3bd4
5 changed files with 60 additions and 35 deletions

View file

@ -1,15 +1,20 @@
/*--------------------------------------------------------*\
| Driver for Elgato Light Strip |
| |
| Monks (imtherealestmonkey@gmail.com), 11/03/2021 |
| Edit by DomePlaysHD 14/03/2024 |
\*--------------------------------------------------------*/
/*---------------------------------------------------------*\
| ElgatoLightStripController.cpp |
| |
| Driver for Elgato Light Strip |
| |
| Monks (@iamtherealestmonkey) 03 Nov 2021 |
| DomePlaysHD 14 Mar 2024 |
| |
| This file is part of the OpenRGB project |
| SPDX-License-Identifier: GPL-2.0-only |
\*---------------------------------------------------------*/
#include "ElgatoLightStripController.h"
#include "json.hpp"
#include <vector>
#include <sstream>
#include <thread>
#include <vector>
#include "ElgatoLightStripController.h"
#include "json.hpp"
#include "LogManager.h"
using json = nlohmann::json;

View file

@ -1,16 +1,21 @@
/*--------------------------------------------------------*\
| Definitions for Elgato Light Strip |
| |
| Monks (imtherealestmonkey@gmail.com), 11/03/2021 |
| Edit by DomePlaysHD 12/03/2024 |
\*--------------------------------------------------------*/
#include "net_port.h"
#include "hsv.h"
#include <string>
/*---------------------------------------------------------*\
| ElgatoLightStripController.h |
| |
| Driver for Elgato Light Strip |
| |
| Monks (@iamtherealestmonkey) 03 Nov 2021 |
| DomePlaysHD 12 Mar 2024 |
| |
| This file is part of the OpenRGB project |
| SPDX-License-Identifier: GPL-2.0-only |
\*---------------------------------------------------------*/
#pragma once
#include <string>
#include "net_port.h"
#include "hsv.h"
class ElgatoLightStripController
{
public:

View file

@ -1,3 +1,12 @@
/*---------------------------------------------------------*\
| ElgatoLightStripControllerDetect.cpp |
| |
| Detector for Elgato Light Strip |
| |
| This file is part of the OpenRGB project |
| SPDX-License-Identifier: GPL-2.0-only |
\*---------------------------------------------------------*/
#include "Detector.h"
#include "ElgatoLightStripController.h"
#include "RGBController_ElgatoLightStrip.h"

View file

@ -1,11 +1,14 @@
/*--------------------------------------------------------*\
| RGBController_ElgatoLightStrip.cpp |
| |
| Generic RGB Interface for ElgatoLightStrip |
| |
| Monks (@iamtherealestmonkey) 11/03/2021 |
| Edit by DomePlaysHD 12/03/2024 |
\*-------------------------------------------------------*/
/*---------------------------------------------------------*\
| RGBController_ElgatoLightStrip.cpp |
| |
| RGBController for Elgato Light Strip |
| |
| Monks (@iamtherealestmonkey) 03 Nov 2021 |
| DomePlaysHD 12 Mar 2024 |
| |
| This file is part of the OpenRGB project |
| SPDX-License-Identifier: GPL-2.0-only |
\*---------------------------------------------------------*/
#include "RGBController_ElgatoLightStrip.h"
#include "hsv.h"

View file

@ -1,11 +1,14 @@
/*--------------------------------------------------------*\
| RGBController_ElgatoLightStrip.h |
| |
| Generic RGB Interface for Elgato LightStrip |
| |
| Monks (imtherealestmonkey@gmail.com) 11/01/2021 |
| Edit by DomePlaysHD 12/03/2024 |
\*--------------------------------------------------------*/
/*---------------------------------------------------------*\
| RGBController_ElgatoLightStrip.h |
| |
| RGBController for Elgato Light Strip |
| |
| Monks (@iamtherealestmonkey) 01 Nov 2021 |
| DomePlaysHD 12 Mar 2024 |
| |
| This file is part of the OpenRGB project |
| SPDX-License-Identifier: GPL-2.0-only |
\*---------------------------------------------------------*/
#pragma once