Update Espurna controller files to new standardized header comment

This commit is contained in:
Adam Honse 2024-05-16 22:28:01 -05:00
parent d5590ed427
commit 9f98e8767c
5 changed files with 52 additions and 29 deletions

View file

@ -1,15 +1,19 @@
/*---------------------------------------------------------*\
| Processing Code for Espurna Interface |
| EspurnaController.cpp |
| |
| Adam Honse (calcprogrammer1@gmail.com), 9/11/2020 |
| Driver for Espurna |
| |
| Adam Honse (calcprogrammer1@gmail.com) 11 Sep 2020 |
| |
| This file is part of the OpenRGB project |
| SPDX-License-Identifier: GPL-2.0-only |
\*---------------------------------------------------------*/
#include "EspurnaController.h"
#include <fstream>
#include <iostream>
#include <string>
#include <string.h>
#include "EspurnaController.h"
EspurnaController::EspurnaController()
{

View file

@ -1,16 +1,19 @@
/*---------------------------------------------------------*\
| Definitions for Espurna Interface |
| EspurnaController.h |
| |
| Adam Honse (calcprogrammer1@gmail.com), 9/11/2020 |
| Driver for Espurna |
| |
| Adam Honse (calcprogrammer1@gmail.com) 11 Sep 2020 |
| |
| This file is part of the OpenRGB project |
| SPDX-License-Identifier: GPL-2.0-only |
\*---------------------------------------------------------*/
#ifndef ESPURNA_H
#define ESPURNA_H
#pragma once
#include <vector>
#include "RGBController.h"
#include "net_port.h"
#include <vector>
#ifndef TRUE
#define TRUE true
@ -45,5 +48,3 @@ private:
net_port *tcpport;
};
#endif

View file

@ -1,11 +1,22 @@
/*---------------------------------------------------------*\
| EspurnaControllerDetect.cpp |
| |
| Detctor for Espurna |
| |
| Adam Honse (calcprogrammer1@gmail.com) 11 Sep 2020 |
| |
| 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 "EspurnaController.h"
#include "RGBController.h"
#include "RGBController_Espurna.h"
#include "SettingsManager.h"
#include <vector>
#include <stdio.h>
#include <stdlib.h>
/******************************************************************************************\
* *

View file

@ -1,10 +1,13 @@
/*-----------------------------------------*\
| RGBController_Espurna.cpp |
| |
| Generic RGB Interface for Espurna |
| |
| Adam Honse (CalcProgrammer1) 6/20/2019 |
\*-----------------------------------------*/
/*---------------------------------------------------------*\
| RGBController_Espurna.cpp |
| |
| RGBController for Espurna |
| |
| Adam Honse (calcprogrammer1@gmail.com) 11 Sep 2020 |
| |
| This file is part of the OpenRGB project |
| SPDX-License-Identifier: GPL-2.0-only |
\*---------------------------------------------------------*/
#include "RGBController_Espurna.h"

View file

@ -1,12 +1,16 @@
/*-----------------------------------------*\
| RGBController_Espurna.h |
| |
| Generic RGB Interface for Espurna |
| |
| Adam Honse (CalcProgrammer1) 9/11/2020 |
\*-----------------------------------------*/
/*---------------------------------------------------------*\
| RGBController_Espurna.h |
| |
| RGBController for Espurna |
| |
| Adam Honse (calcprogrammer1@gmail.com) 11 Sep 2020 |
| |
| This file is part of the OpenRGB project |
| SPDX-License-Identifier: GPL-2.0-only |
\*---------------------------------------------------------*/
#pragma once
#include "RGBController.h"
#include "EspurnaController.h"