mirror of
https://github.com/CalcProgrammer1/OpenRGB.git
synced 2025-12-26 16:57:51 -05:00
63 lines
2.1 KiB
C++
63 lines
2.1 KiB
C++
/*-----------------------------------------*\
|
|
| HyperXPulsefireSurgeController.h |
|
|
| |
|
|
| Definitions and types for HyperX |
|
|
| Pulsefire Surge lighting controller |
|
|
| |
|
|
| Adam Honse (CalcProgrammer1) 7/25/2020 |
|
|
\*-----------------------------------------*/
|
|
|
|
#include "RGBController.h"
|
|
|
|
#include <string>
|
|
#include <hidapi/hidapi.h>
|
|
|
|
#pragma once
|
|
|
|
enum
|
|
{
|
|
HYPERX_PULSEFIRE_SURGE_PACKET_ID_SET_CONFIGURATION = 0x01, /* Set profile configuration packet */
|
|
HYPERX_PULSEFIRE_SURGE_PACKET_ID_SET_BRIGHTNESS = 0x03, /* Set profile settings and brightness */
|
|
HYPERX_PULSEFIRE_SURGE_PACKET_ID_SELECT_PROFILE = 0x07, /* Select profile */
|
|
HYPERX_PULSEFIRE_SURGE_PACKET_ID_DIRECT = 0x14, /* Direct control packet */
|
|
};
|
|
|
|
enum
|
|
{
|
|
HYPERX_PULSEFIRE_SURGE_MODE_SOLID = 0x00, /* Solid color mode */
|
|
HYPERX_PULSEFIRE_SURGE_MODE_CYCLE = 0x01, /* Spectrum cycle mode */
|
|
HYPERX_PULSEFIRE_SURGE_MODE_BREATHING = 0x02, /* Breathing mode */
|
|
HYPERX_PULSEFIRE_SURGE_MODE_WAVE = 0x03, /* Wave mode */
|
|
HYPERX_PULSEFIRE_SURGE_MODE_TRIGGER = 0x04, /* Trigger mode */
|
|
};
|
|
|
|
class HyperXPulsefireSurgeController
|
|
{
|
|
public:
|
|
HyperXPulsefireSurgeController(hid_device* dev_handle, const char* path);
|
|
~HyperXPulsefireSurgeController();
|
|
|
|
std::string GetDeviceLocation();
|
|
std::string GetSerialString();
|
|
|
|
void SelectProfile
|
|
(
|
|
unsigned char profile
|
|
);
|
|
|
|
void SetProfileBrightness
|
|
(
|
|
unsigned char profile,
|
|
unsigned char brightness
|
|
);
|
|
|
|
void SendDirect
|
|
(
|
|
RGBColor* color_data
|
|
);
|
|
|
|
private:
|
|
hid_device* dev;
|
|
std::string location;
|
|
};
|