mirror of
https://github.com/CalcProgrammer1/OpenRGB.git
synced 2025-12-23 23:37:48 -05:00
21 lines
827 B
C++
21 lines
827 B
C++
/*---------------------------------------------------------*\
|
|
| RGBController_LightSaltKeypad.h |
|
|
| |
|
|
| RGBController for LightSalt Keypad |
|
|
| |
|
|
| James Buren (braewoods) 23 Jul 2024 |
|
|
| |
|
|
| This file is part of the OpenRGB project |
|
|
| SPDX-License-Identifier: GPL-2.0-or-later |
|
|
\*---------------------------------------------------------*/
|
|
|
|
#pragma once
|
|
|
|
#include "RGBController_LightSalt.h"
|
|
|
|
class RGBController_LightSaltKeypad : public RGBController_LightSalt
|
|
{
|
|
public:
|
|
RGBController_LightSaltKeypad(LightSaltController* controller_ptr);
|
|
};
|