mirror of
https://github.com/CalcProgrammer1/OpenRGB.git
synced 2026-01-03 04:37:50 -05:00
40 lines
1.2 KiB
C++
40 lines
1.2 KiB
C++
/*---------------------------------------------------------*\
|
|
| HyperXAlloyOriginsController.h |
|
|
| |
|
|
| Driver for HyperX Alloy Origins keyboard |
|
|
| |
|
|
| Adam Honse (CalcProgrammer1) 11 Jul 2020 |
|
|
| |
|
|
| This file is part of the OpenRGB project |
|
|
| SPDX-License-Identifier: GPL-2.0-only |
|
|
\*---------------------------------------------------------*/
|
|
|
|
#pragma once
|
|
|
|
#include <string>
|
|
#include <hidapi.h>
|
|
#include "RGBController.h"
|
|
|
|
class HyperXAlloyOriginsController
|
|
{
|
|
public:
|
|
HyperXAlloyOriginsController(hid_device* dev_handle, const char* path);
|
|
~HyperXAlloyOriginsController();
|
|
|
|
std::string GetDeviceLocation();
|
|
std::string GetSerialString();
|
|
|
|
void SetLEDsDirect(std::vector<RGBColor> colors);
|
|
|
|
private:
|
|
hid_device* dev;
|
|
std::string location;
|
|
|
|
void SendDirectInitialization();
|
|
void SendDirectColorPacket
|
|
(
|
|
RGBColor* color_data,
|
|
unsigned int color_count
|
|
);
|
|
};
|