mirror of
https://github.com/CalcProgrammer1/OpenRGB.git
synced 2025-12-23 23:37:48 -05:00
56 lines
1.9 KiB
C++
56 lines
1.9 KiB
C++
/*---------------------------------------------------------*\
|
|
| HyperXMicrophoneV2Controller.h |
|
|
| |
|
|
| Driver for HyperX QuadCast 2 S Microphone |
|
|
| |
|
|
| Morgan Guimard (morg) |
|
|
| Logan Phillips (Eclipse) 23 Oct 2025 |
|
|
| |
|
|
| 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 HYPERX_QUADCAST_2S_PACKET_SIZE 64
|
|
#define HYPERX_QUADCAST_2S_REPORT_ID 0x44
|
|
#define HYPERX_QUADCAST_2S_LEDS_PER_PACKET 20
|
|
#define HYPERX_QUADCAST_2S_MATRIX_WIDTH 12
|
|
#define HYPERX_QUADCAST_2S_MATRIX_HEIGHT 9
|
|
#define HYPERX_QUADCAST_2S_TOTAL_LEDS 108
|
|
|
|
class HyperXMicrophoneV2Controller
|
|
{
|
|
public:
|
|
HyperXMicrophoneV2Controller(hid_device* dev, std::string path, std::string dev_name);
|
|
~HyperXMicrophoneV2Controller();
|
|
|
|
std::string GetDeviceLocation();
|
|
std::string GetNameString();
|
|
std::string GetSerialString();
|
|
|
|
void SendDirect(std::vector<RGBColor> color_data);
|
|
void SaveColors(std::vector<RGBColor> color_data);
|
|
|
|
bool ShouldPauseUpdates();
|
|
|
|
private:
|
|
hid_device* dev;
|
|
std::string location;
|
|
std::string name;
|
|
std::mutex lock;
|
|
|
|
bool WaitForResponse(const uint8_t* sent_packet, int timeout_ms = 2000);
|
|
void SendColorPackets(std::vector<RGBColor> colors, uint8_t command_byte);
|
|
void TrackCommunicationError();
|
|
void FlushInputBuffer();
|
|
|
|
unsigned int errors;
|
|
std::chrono::steady_clock::time_point last_error_time;
|
|
std::chrono::steady_clock::time_point pause_until;
|
|
};
|