mirror of
https://github.com/CalcProgrammer1/OpenRGB.git
synced 2025-12-26 16:57:51 -05:00
64 lines
2.0 KiB
C++
64 lines
2.0 KiB
C++
/*---------------------------------------------------------------------*\
|
|
| BloodyMouseController.h |
|
|
| |
|
|
| Driver for BloodyMouse USB Controller |
|
|
| |
|
|
| Chris M (Dr_No) 30 Jun 2022 |
|
|
| |
|
|
\*---------------------------------------------------------------------*/
|
|
|
|
#include <string>
|
|
#include <hidapi/hidapi.h>
|
|
#include "LogManager.h"
|
|
#include "RGBController.h"
|
|
|
|
#pragma once
|
|
|
|
/*-----------------------------------------------------*\
|
|
| Mouse product IDs |
|
|
\*-----------------------------------------------------*/
|
|
#define BLOODY_W60_PRO_PID 0x37EA
|
|
|
|
/*-----------------------------------------------------*\
|
|
| Mousemat product IDs |
|
|
\*-----------------------------------------------------*/
|
|
#define BLOODY_MP_50RS_PID 0xFA60
|
|
|
|
#define HID_MAX_STR 255
|
|
#define BLOODYMOUSE_WRITE_PACKET_SIZE 64
|
|
|
|
#define BLOODYMOUSE_BRIGHTNESS_MIN 0
|
|
#define BLOODYMOUSE_BRIGHTNESS_MAX 255
|
|
|
|
enum
|
|
{
|
|
BLOODYMOUSE_MODE_DIRECT = 0x01, //Direct Led Control - Independently set LEDs in zone
|
|
};
|
|
|
|
enum
|
|
{
|
|
BLOODYMOUSE_REPORT_BYTE = 1,
|
|
BLOODYMOUSE_COMMAND_BYTE = 2,
|
|
BLOODYMOUSE_MODE_BYTE = 3,
|
|
BLOODYMOUSE_DATA_BYTE = 8,
|
|
};
|
|
|
|
class BloodyMouseController
|
|
{
|
|
public:
|
|
BloodyMouseController(hid_device* dev_handle, const char* path, uint16_t product_id);
|
|
~BloodyMouseController();
|
|
|
|
uint16_t GetPid();
|
|
std::string GetSerial();
|
|
std::string GetLocation();
|
|
|
|
void SetLedsDirect(std::vector<RGBColor> colors);
|
|
private:
|
|
uint16_t pid;
|
|
std::string location;
|
|
hid_device* dev;
|
|
|
|
void InitDevice();
|
|
};
|