Publish LumaOps source
This commit is contained in:
@@ -0,0 +1,37 @@
|
||||
/*---------------------------------------------------------*\
|
||||
| CorsairK65MiniController.cpp |
|
||||
| |
|
||||
| Driver for Corsair K65 Mini keyboard |
|
||||
| |
|
||||
| This file is part of the OpenRGB project |
|
||||
| SPDX-License-Identifier: GPL-2.0-or-later |
|
||||
\*---------------------------------------------------------*/
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <string>
|
||||
#include <hidapi.h>
|
||||
#include "RGBController.h"
|
||||
|
||||
#define PACKET_LENGTH 1025
|
||||
#define K65_WRITE_COMMAND 0x08
|
||||
|
||||
class CorsairK65MiniController
|
||||
{
|
||||
public:
|
||||
CorsairK65MiniController(hid_device* dev_handle, const char* path, std::string dev_name);
|
||||
~CorsairK65MiniController();
|
||||
|
||||
std::string GetDeviceLocation();
|
||||
std::string GetName();
|
||||
std::string GetSerialString();
|
||||
void SetLEDs(std::vector<RGBColor> colors, std::vector<unsigned int> positions);
|
||||
|
||||
private:
|
||||
hid_device* dev;
|
||||
|
||||
std::string location;
|
||||
std::string name;
|
||||
|
||||
void LightingControl();
|
||||
};
|
||||
Reference in New Issue
Block a user