mirror of
https://github.com/CalcProgrammer1/OpenRGB.git
synced 2025-12-25 16:27:50 -05:00
54 lines
1.6 KiB
C++
54 lines
1.6 KiB
C++
/*---------------------------------------------------------*\
|
|
| DasKeyboardController.h |
|
|
| |
|
|
| Driver for Das Keyboard keyboard |
|
|
| |
|
|
| Frank Niessen (denk_mal) 16 Dec 2020 |
|
|
| |
|
|
| This file is part of the OpenRGB project |
|
|
| SPDX-License-Identifier: GPL-2.0-only |
|
|
\*---------------------------------------------------------*/
|
|
|
|
#pragma once
|
|
|
|
#include <string>
|
|
#include <hidapi/hidapi.h>
|
|
#include "RGBController.h"
|
|
|
|
class DasKeyboardController
|
|
{
|
|
public:
|
|
DasKeyboardController(hid_device *dev_handle, const char *path);
|
|
|
|
~DasKeyboardController();
|
|
|
|
std::string GetDeviceLocation();
|
|
|
|
std::string GetSerialString();
|
|
|
|
std::string GetVersionString();
|
|
|
|
std::string GetLayoutString();
|
|
|
|
void SendColors(unsigned char key_id, unsigned char mode,
|
|
unsigned char red, unsigned char green, unsigned char blue);
|
|
|
|
void SendApply();
|
|
|
|
private:
|
|
hid_device *dev;
|
|
std::string location;
|
|
std::string version;
|
|
bool useTraditionalSendData;
|
|
|
|
void SendInitialize();
|
|
|
|
void SendData(const unsigned char *data, unsigned int length);
|
|
|
|
void SendDataTraditional(const unsigned char *data, unsigned int length);
|
|
|
|
void SendDataModern(const unsigned char *data, unsigned int length);
|
|
|
|
int ReceiveData(unsigned char *data, unsigned int max_length);
|
|
};
|