Update SRGBmods Pico controller files to new standardized header comment

This commit is contained in:
Adam Honse 2024-06-17 22:42:12 -05:00
parent a3ded7574c
commit 0934020873
4 changed files with 46 additions and 36 deletions

View file

@ -1,11 +1,14 @@
/*-----------------------------------------*\
| RGBController_SRGBmodsPico.cpp |
| |
| Generic RGB Interface for SRGBmods |
| Raspberry Pi Pico LED Controller |
| |
| Adam Honse (CalcProgrammer1) 7/21/2022 |
\*-----------------------------------------*/
/*---------------------------------------------------------*\
| RGBController_SRGBmodsPico.cpp |
| |
| RGBController for SRGBmods Raspberry Pi Pico LED |
| Controller |
| |
| Adam Honse (CalcProgrammer1) 21 Jul 2022 |
| |
| This file is part of the OpenRGB project |
| SPDX-License-Identifier: GPL-2.0-only |
\*---------------------------------------------------------*/
#include "RGBController_SRGBmodsPico.h"

View file

@ -1,11 +1,14 @@
/*-----------------------------------------*\
| RGBController_SRGBmodsPico.h |
| |
| Generic RGB Interface for SRGBmods |
| Raspberry Pi Pico LED Controller |
| |
| Adam Honse (CalcProgrammer1) 7/21/2022 |
\*-----------------------------------------*/
/*---------------------------------------------------------*\
| RGBController_SRGBmodsPico.h |
| |
| RGBController for SRGBmods Raspberry Pi Pico LED |
| Controller |
| |
| Adam Honse (CalcProgrammer1) 21 Jul 2022 |
| |
| This file is part of the OpenRGB project |
| SPDX-License-Identifier: GPL-2.0-only |
\*---------------------------------------------------------*/
#pragma once

View file

@ -1,14 +1,16 @@
/*-----------------------------------------*\
| SRGBmodsPicoController.cpp |
| |
| Driver for SRGBmods Raspberry Pi Pico |
| LED Controller |
| |
| Adam Honse (CalcProgrammer1) 7/21/2022 |
\*-----------------------------------------*/
/*---------------------------------------------------------*\
| SRGBmodsPicoController.cpp |
| |
| Driver for SRGBmods Raspberry Pi Pico LED Controller |
| |
| Adam Honse (CalcProgrammer1) 21 Jul 2022 |
| |
| This file is part of the OpenRGB project |
| SPDX-License-Identifier: GPL-2.0-only |
\*---------------------------------------------------------*/
#include "SRGBmodsPicoController.h"
#include <cstring>
#include "SRGBmodsPicoController.h"
using namespace std::chrono_literals;

View file

@ -1,18 +1,20 @@
/*-----------------------------------------*\
| SRGBmodsPicoController.h |
| |
| Definitions and types for SRGBmods |
| Raspberry Pi Pico LED Controller |
| |
| Adam Honse (CalcProgrammer1) 7/21/2022 |
\*-----------------------------------------*/
/*---------------------------------------------------------*\
| SRGBmodsPicoController.h |
| |
| Driver for SRGBmods Raspberry Pi Pico LED Controller |
| |
| Adam Honse (CalcProgrammer1) 21 Jul 2022 |
| |
| This file is part of the OpenRGB project |
| SPDX-License-Identifier: GPL-2.0-only |
\*---------------------------------------------------------*/
#pragma once
#include "RGBController.h"
#include <chrono>
#include <vector>
#include <hidapi/hidapi.h>
#pragma once
#include "RGBController.h"
class SRGBmodsPicoController
{