Update SRGBmods Pico controller files to new standardized header comment
This commit is contained in:
parent
a3ded7574c
commit
0934020873
4 changed files with 46 additions and 36 deletions
|
|
@ -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"
|
||||
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
||||
|
|
|
|||
|
|
@ -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
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue