mirror of
https://github.com/CalcProgrammer1/OpenRGB.git
synced 2025-12-23 23:37:48 -05:00
23 lines
873 B
C++
23 lines
873 B
C++
/*---------------------------------------------------------*\
|
|
| MNTPocketReformKeyboardController.cpp |
|
|
| |
|
|
| Driver for the MNT Reform keyboards |
|
|
| |
|
|
| Christian Heller <c.heller@plomlompom.de> 7 Aug 2024 |
|
|
| |
|
|
| This file is part of the OpenRGB project |
|
|
| SPDX-License-Identifier: GPL-2.0-or-later |
|
|
\*---------------------------------------------------------*/
|
|
|
|
#pragma once
|
|
|
|
#include "MNTKeyboardController.h"
|
|
|
|
#define KBD_COLS_POCKET_REFORM 12
|
|
|
|
class MNTPocketReformKeyboardController : public MNTKeyboardController
|
|
{
|
|
public:
|
|
MNTPocketReformKeyboardController(hid_device *dev_handle, const char *path);
|
|
};
|