mirror of
https://github.com/CalcProgrammer1/OpenRGB.git
synced 2026-01-01 11:47:56 -05:00
* Adding entry for the Cougar 700K EVO VID & PID * Registered detectors * Creating CougarKeyboardController class * Creating RGBController_CougarKeyboard class
83 lines
3.3 KiB
C++
83 lines
3.3 KiB
C++
/*-------------------------------------------------------------------*\
|
|
| CougarKeyboardController.h |
|
|
| |
|
|
| Driver for CougarKeyboard USB Controller |
|
|
| |
|
|
| Chris M (DrNo) 5 Apr 2022 |
|
|
\*-------------------------------------------------------------------*/
|
|
|
|
#include <string>
|
|
#include <hidapi/hidapi.h>
|
|
#include "RGBController.h"
|
|
|
|
#pragma once
|
|
|
|
#define COUGARKEYBOARDCONTROLLER_WRITE_PACKET_SIZE 65 //Buffer requires a prepended ReportID hence + 1
|
|
#define HID_MAX_STR 255
|
|
|
|
#define COUGARKEYBOARDCONTROLLER_BRIGHTNESS_MIN 0
|
|
#define COUGARKEYBOARDCONTROLLER_BRIGHTNESS_MAX 100
|
|
#define COUGARKEYBOARDCONTROLLER_MATRIX_WIDTH 23
|
|
|
|
static const uint8_t direction_map[6] =
|
|
{
|
|
4, 0, 6, 2, 11, 12 //Left, Right, Up, Down, Horizontal, Vertical
|
|
};
|
|
|
|
enum Cougar_Keyboard_Controller_Modes
|
|
{
|
|
COUGARKEYBOARDCONTROLLER_MODE_OFF = 0x0C, //Turn off - All leds off
|
|
COUGARKEYBOARDCONTROLLER_MODE_DIRECT = 0x0B, //Customize Mode
|
|
COUGARKEYBOARDCONTROLLER_MODE_STATIC = 0x00, //Steady Mode
|
|
COUGARKEYBOARDCONTROLLER_MODE_BREATHING = 0x01, //Breathing Mode - Fades between fully off and fully on.
|
|
COUGARKEYBOARDCONTROLLER_MODE_CIRCLE = 0x02,
|
|
COUGARKEYBOARDCONTROLLER_MODE_REACTIVE = 0x03, //Click Mode
|
|
COUGARKEYBOARDCONTROLLER_MODE_WAVE = 0x04,
|
|
COUGARKEYBOARDCONTROLLER_MODE_RIPPLE = 0x05,
|
|
COUGARKEYBOARDCONTROLLER_MODE_STAR = 0x06,
|
|
COUGARKEYBOARDCONTROLLER_MODE_SCAN = 0x07,
|
|
COUGARKEYBOARDCONTROLLER_MODE_RHYTHM = 0x08,
|
|
COUGARKEYBOARDCONTROLLER_MODE_RAIN = 0x09,
|
|
COUGARKEYBOARDCONTROLLER_MODE_SNAKE = 0x0A,
|
|
};
|
|
|
|
enum Cougar_Keyboard_Controller_Byte_Map
|
|
{
|
|
COUGARKEYBOARDCONTROLLER_REPORT_BYTE = 1,
|
|
COUGARKEYBOARDCONTROLLER_COMMAND_BYTE = 2,
|
|
COUGARKEYBOARDCONTROLLER_MODE_BYTE = 3,
|
|
COUGARKEYBOARDCONTROLLER_SPEED_BYTE = 5,
|
|
COUGARKEYBOARDCONTROLLER_BRIGHTNESS_BYTE = 6,
|
|
COUGARKEYBOARDCONTROLLER_RANDOM_BYTE = 7,
|
|
COUGARKEYBOARDCONTROLLER_DIRECTION_BYTE = 8,
|
|
COUGARKEYBOARDCONTROLLER_DATA_BYTE = 9,
|
|
};
|
|
|
|
enum Cougar_Keyboard_Controller_Speeds
|
|
{
|
|
COUGARKEYBOARDCONTROLLER_SPEED_SLOWEST = 0x0A, // Slowest speed
|
|
COUGARKEYBOARDCONTROLLER_SPEED_NORMAL = 0x05, // Normal speed
|
|
COUGARKEYBOARDCONTROLLER_SPEED_FASTEST = 0x01, // Fastest speed
|
|
};
|
|
|
|
class CougarKeyboardController
|
|
{
|
|
public:
|
|
CougarKeyboardController(hid_device* dev_handle, const char* path);
|
|
~CougarKeyboardController();
|
|
|
|
std::string GetDeviceName();
|
|
std::string GetSerial();
|
|
std::string GetLocation();
|
|
|
|
void SetMode(uint8_t mode, uint8_t speed, uint8_t brightness, uint8_t direction, std::vector<RGBColor> colours, bool random_colours);
|
|
void SetLedsDirect(std::vector<RGBColor> colours);
|
|
void Save(uint8_t flag);
|
|
void SendProfile(uint8_t profile, uint8_t light);
|
|
private:
|
|
std::string device_name;
|
|
std::string serial;
|
|
std::string location;
|
|
hid_device* dev;
|
|
};
|