Update Yeelight controller files to new standardized header comment

This commit is contained in:
Adam Honse 2024-06-30 13:27:36 -05:00
parent 5bfa134414
commit db8932749e
5 changed files with 52 additions and 25 deletions

View file

@ -1,10 +1,13 @@
/*-----------------------------------------*\
| RGBController_Yeelight.cpp |
| |
| Generic RGB Interface for Yeelight |
| |
| Adam Honse (CalcProgrammer1) 1/18/2021 |
\*-----------------------------------------*/
/*---------------------------------------------------------*\
| RGBController_Yeelight.cpp |
| |
| RGBController for Yeelight |
| |
| Adam Honse (CalcProgrammer1) 18 Jan 2021 |
| |
| This file is part of the OpenRGB project |
| SPDX-License-Identifier: GPL-2.0-only |
\*---------------------------------------------------------*/
#include "RGBController_Yeelight.h"

View file

@ -1,12 +1,16 @@
/*-----------------------------------------*\
| RGBController_Yeelight.h |
| |
| Generic RGB Interface for Yeelight |
| |
| Adam Honse (CalcProgrammer1) 1/18/2021 |
\*-----------------------------------------*/
/*---------------------------------------------------------*\
| RGBController_Yeelight.h |
| |
| RGBController for Yeelight |
| |
| Adam Honse (CalcProgrammer1) 18 Jan 2021 |
| |
| This file is part of the OpenRGB project |
| SPDX-License-Identifier: GPL-2.0-only |
\*---------------------------------------------------------*/
#pragma once
#include "RGBController.h"
#include "YeelightController.h"

View file

@ -1,7 +1,12 @@
/*---------------------------------------------------------*\
| Driver for Yeelight |
| YeelightController.cpp |
| |
| Adam Honse (calcprogrammer1@gmail.com), 1/18/2021 |
| Driver for Yeelight |
| |
| Adam Honse (CalcProgrammer1) 18 Jan 2021 |
| |
| This file is part of the OpenRGB project |
| SPDX-License-Identifier: GPL-2.0-only |
\*---------------------------------------------------------*/
#include "YeelightController.h"

View file

@ -1,17 +1,21 @@
/*---------------------------------------------------------*\
| Definitions for Yeelight |
| YeelightController.h |
| |
| Adam Honse (calcprogrammer1@gmail.com), 1/18/2021 |
| Driver for Yeelight |
| |
| Adam Honse (CalcProgrammer1) 18 Jan 2021 |
| |
| This file is part of the OpenRGB project |
| SPDX-License-Identifier: GPL-2.0-only |
\*---------------------------------------------------------*/
#include "RGBController.h"
#include "net_port.h"
#pragma once
#include <string>
#include <thread>
#include <vector>
#pragma once
#include "RGBController.h"
#include "net_port.h"
class YeelightController
{

View file

@ -1,11 +1,22 @@
/*---------------------------------------------------------*\
| YeelightControllerDetect.cpp |
| |
| Detector for Yeelight |
| |
| Adam Honse (CalcProgrammer1) 18 Jan 2021 |
| |
| 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 "YeelightController.h"
#include "RGBController.h"
#include "RGBController_Yeelight.h"
#include "SettingsManager.h"
#include <vector>
#include <stdio.h>
#include <stdlib.h>
/******************************************************************************************\
* *