Update LED strip controller files to new standardized header comment

This commit is contained in:
Adam Honse 2024-05-25 12:12:20 -05:00
parent fae1e8e9eb
commit 8b0b5bc526
5 changed files with 53 additions and 32 deletions

View file

@ -1,15 +1,19 @@
/*---------------------------------------------------------*\
| Processing Code for Generic LED Strip Interface |
| LEDStripController.cpp |
| |
| Adam Honse (calcprogrammer1@gmail.com), 12/11/2016 |
| Driver for serial LED strips |
| |
| Adam Honse (calcprogrammer1@gmail.com) 11 Dec 2016 |
| |
| This file is part of the OpenRGB project |
| SPDX-License-Identifier: GPL-2.0-only |
\*---------------------------------------------------------*/
#include "LEDStripController.h"
#include "ResourceManager.h"
#include <fstream>
#include <iostream>
#include <string>
#include "LEDStripController.h"
#include "ResourceManager.h"
LEDStripController::LEDStripController()
{

View file

@ -1,18 +1,21 @@
/*---------------------------------------------------------*\
| Definitions for Generic LED Strip Interface |
| LEDStripController.h |
| |
| Adam Honse (calcprogrammer1@gmail.com), 12/11/2016 |
| Driver for serial LED strips |
| |
| Adam Honse (calcprogrammer1@gmail.com) Dec 11 2016 |
| |
| This file is part of the OpenRGB project |
| SPDX-License-Identifier: GPL-2.0-only |
\*---------------------------------------------------------*/
#ifndef LED_STRIP_H
#define LED_STRIP_H
#pragma once
#include <vector>
#include "RGBController.h"
#include "i2c_smbus.h"
#include "serial_port.h"
#include "net_port.h"
#include <vector>
#ifndef TRUE
#define TRUE true
@ -79,5 +82,3 @@ private:
unsigned char i2c_addr;
led_protocol protocol;
};
#endif

View file

@ -1,11 +1,22 @@
/*---------------------------------------------------------*\
| LEDStripControllerDetect.cpp |
| |
| Detector for serial LED strips |
| |
| Adam Honse (calcprogrammer1@gmail.com) 11 Dec 2016 |
| |
| 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 "LEDStripController.h"
#include "RGBController.h"
#include "RGBController_LEDStrip.h"
#include "SettingsManager.h"
#include <vector>
#include <stdio.h>
#include <stdlib.h>
/******************************************************************************************\
* *

View file

@ -1,11 +1,13 @@
/*-----------------------------------------*\
| RGBController_LEDStrip.cpp |
| |
| Generic RGB Interface for OpenAuraSDK |
| KeyboardVisualizer LED strip interface |
| |
| Adam Honse (CalcProgrammer1) 6/20/2019 |
\*-----------------------------------------*/
/*---------------------------------------------------------*\
| RGBController_LEDStrip.cpp |
| |
| RGBController for serial LED strips |
| |
| Adam Honse (calcprogrammer1@gmail.com) 20 Jun 2019 |
| |
| This file is part of the OpenRGB project |
| SPDX-License-Identifier: GPL-2.0-only |
\*---------------------------------------------------------*/
#include "RGBController_LEDStrip.h"

View file

@ -1,13 +1,16 @@
/*-----------------------------------------*\
| RGBController_LEDStrip.h |
| |
| Generic RGB Interface for OpenAuraSDK |
| KeyboardVisualizer LED strip interface |
| |
| Adam Honse (CalcProgrammer1) 6/20/2019 |
\*-----------------------------------------*/
/*---------------------------------------------------------*\
| RGBController_LEDStrip.h |
| |
| RGBController for serial LED strips |
| |
| Adam Honse (calcprogrammer1@gmail.com) 20 Jun 2019 |
| |
| This file is part of the OpenRGB project |
| SPDX-License-Identifier: GPL-2.0-only |
\*---------------------------------------------------------*/
#pragma once
#include "RGBController.h"
#include "serial_port.h"
#include "LEDStripController.h"