39 lines
1.4 KiB
C++
39 lines
1.4 KiB
C++
/*---------------------------------------------------------*\
|
|
| HYTEMousematController_MacOS.h |
|
|
| |
|
|
| Driver for HYTE mousemat (libusb implementation for |
|
|
| MacOS) |
|
|
| |
|
|
| Adam Honse (calcprogrammer1@gmail.com) 05 Aug 2024 |
|
|
| |
|
|
| This file is part of the OpenRGB project |
|
|
| SPDX-License-Identifier: GPL-2.0-only |
|
|
\*---------------------------------------------------------*/
|
|
|
|
#pragma once
|
|
|
|
#include <vector>
|
|
#include <libusb.h>
|
|
#include "RGBController.h"
|
|
|
|
/*---------------------------------------------------------*\
|
|
| HYTE CNVS endpoint values |
|
|
\*---------------------------------------------------------*/
|
|
#define HYTE_CNVS_EP_IN 0x81
|
|
#define HYTE_CNVS_EP_OUT 0x01
|
|
|
|
class HYTEMousematController
|
|
{
|
|
public:
|
|
HYTEMousematController(libusb_device_handle* dev_handle);
|
|
~HYTEMousematController();
|
|
|
|
std::string GetLocation();
|
|
|
|
void FirmwareAnimationControl(bool enabled);
|
|
void StreamingCommand(RGBColor* colors);
|
|
|
|
private:
|
|
libusb_device_handle* dev;
|
|
std::string location;
|
|
};
|