Update file header comments to standardized new format for BlinkyTape files

This commit is contained in:
Adam Honse 2024-05-11 21:41:01 -05:00
parent 88929f9e4c
commit 02d3b27073
5 changed files with 36 additions and 12 deletions

View file

@ -1,9 +1,12 @@
/*---------------------------------------------------------*\
| BlinkyTapeController.cpp |
| BlinkyTapeController.cpp |
| |
| BlinkyTape controller interface |
| Driver for BlinkyTape |
| |
| Matt Mets (matt@blinkinlabs.com), 07/01/2021 |
| Matt Mets (matt@blinkinlabs.com) 01 Jul 2021 |
| |
| This file is part of the OpenRGB project |
| SPDX-License-Identifier: GPL-2.0-only |
\*---------------------------------------------------------*/
#include <algorithm>
@ -100,4 +103,3 @@ void BlinkyTapeController::SetLEDs(std::vector<RGBColor> colors)
\*-------------------------------------------------------------*/
serialport->serial_write((char *)serial_buf.data(), packet_size);
}

View file

@ -1,7 +1,12 @@
/*---------------------------------------------------------*\
| Definitions for BlinkyTape Interface |
| BlinkyTapeController.h |
| |
| Matt Mets (matt@blinkinlabs.com), 07/01/2021 |
| Driver for BlinkyTape |
| |
| Matt Mets (matt@blinkinlabs.com) 01 Jul 2021 |
| |
| This file is part of the OpenRGB project |
| SPDX-License-Identifier: GPL-2.0-only |
\*---------------------------------------------------------*/
#pragma once

View file

@ -1,3 +1,14 @@
/*---------------------------------------------------------*\
| BlinkyTapeControllerDetect.cpp |
| |
| Detector for BlinkyTape |
| |
| Matt Mets (matt@blinkinlabs.com) 01 Jul 2021 |
| |
| This file is part of the OpenRGB project |
| SPDX-License-Identifier: GPL-2.0-only |
\*---------------------------------------------------------*/
#include <stdio.h>
#include <stdlib.h>
#include <vector>

View file

@ -1,9 +1,12 @@
/*---------------------------------------------------------*\
| RGBController_BlinkyTape.cpp |
| RGBController_BlinkyTape.cpp |
| |
| Generic RGB Interface for BlinkyTape Led controller |
| RGBController for BlinkyTape |
| |
| Matt Mets (matt@blinkinlabs.com), 07/01/2021 |
| Matt Mets (matt@blinkinlabs.com) 01 Jul 2021 |
| |
| This file is part of the OpenRGB project |
| SPDX-License-Identifier: GPL-2.0-only |
\*---------------------------------------------------------*/
#include "RGBController_BlinkyTape.h"

View file

@ -1,9 +1,12 @@
/*---------------------------------------------------------*\
| RGBController_BlinkyTape.h |
| RGBController_BlinkyTape.h |
| |
| Generic RGB Interface for BlinkyTape Led controller |
| RGBController for BlinkyTape |
| |
| Matt Mets (matt@blinkinlabs.com), 07/01/2021 |
| Matt Mets (matt@blinkinlabs.com) 01 Jul 2021 |
| |
| This file is part of the OpenRGB project |
| SPDX-License-Identifier: GPL-2.0-only |
\*---------------------------------------------------------*/
#pragma once