mirror of
https://github.com/CalcProgrammer1/OpenRGB.git
synced 2025-12-31 11:17:52 -05:00
105 lines
2.7 KiB
C++
105 lines
2.7 KiB
C++
/*---------------------------------------------------------*\
|
|
| N5312AController.cpp |
|
|
| |
|
|
| Driver for N5312A |
|
|
| |
|
|
| Morgan Guimard (morg) 02 Apr 2022 |
|
|
| |
|
|
| This file is part of the OpenRGB project |
|
|
| SPDX-License-Identifier: GPL-2.0-only |
|
|
\*---------------------------------------------------------*/
|
|
|
|
#include <string.h>
|
|
#include "LogManager.h"
|
|
#include "N5312AController.h"
|
|
#include "StringUtils.h"
|
|
|
|
N5312AController::N5312AController(hid_device* dev_handle, const hid_device_info& info)
|
|
{
|
|
dev = dev_handle;
|
|
location = info.path;
|
|
version = "";
|
|
|
|
SendInit();
|
|
}
|
|
|
|
N5312AController::~N5312AController()
|
|
{
|
|
hid_close(dev);
|
|
}
|
|
|
|
std::string N5312AController::GetDeviceLocation()
|
|
{
|
|
return("HID: " + location);
|
|
}
|
|
|
|
std::string N5312AController::GetSerialString()
|
|
{
|
|
wchar_t serial_string[128];
|
|
int ret = hid_get_serial_number_string(dev, serial_string, 128);
|
|
|
|
if(ret != 0)
|
|
{
|
|
return("");
|
|
}
|
|
|
|
return(StringUtils::wstring_to_string(serial_string));
|
|
}
|
|
|
|
std::string N5312AController::GetFirmwareVersion()
|
|
{
|
|
return(version);
|
|
}
|
|
|
|
void N5312AController::SendInit()
|
|
{
|
|
unsigned char usb_buf[N5312A_PACKET_DATA_LENGTH];
|
|
|
|
memset(usb_buf, 0x00, N5312A_PACKET_DATA_LENGTH);
|
|
|
|
usb_buf[0x00] = N5312A_REPORT_ID;
|
|
usb_buf[0x01] = N5312A_INIT_BYTE;
|
|
|
|
hid_send_feature_report(dev, usb_buf, N5312A_PACKET_DATA_LENGTH);
|
|
}
|
|
|
|
void N5312AController::SetColor(RGBColor color)
|
|
{
|
|
unsigned char usb_buf[N5312A_PACKET_DATA_LENGTH];
|
|
|
|
memset(usb_buf, 0x00, N5312A_PACKET_DATA_LENGTH);
|
|
|
|
usb_buf[0x00] = N5312A_REPORT_ID;
|
|
usb_buf[0x01] = N5312A_SET_COLOR_BYTE;
|
|
usb_buf[0x02] = 1;
|
|
usb_buf[0x03] = RGBGetRValue(color);
|
|
usb_buf[0x04] = RGBGetGValue(color);
|
|
usb_buf[0x05] = RGBGetBValue(color);
|
|
|
|
hid_send_feature_report(dev, usb_buf, N5312A_PACKET_DATA_LENGTH);
|
|
|
|
}
|
|
|
|
void N5312AController::SetMode(RGBColor color, unsigned char mode_value, unsigned char brightness, unsigned char speed)
|
|
{
|
|
SetColor(color);
|
|
|
|
unsigned char usb_buf[N5312A_PACKET_DATA_LENGTH];
|
|
|
|
memset(usb_buf, 0x00, N5312A_PACKET_DATA_LENGTH);
|
|
|
|
usb_buf[0x00] = N5312A_REPORT_ID;
|
|
usb_buf[0x01] = N5312A_SET_MODE_BYTE;
|
|
|
|
usb_buf[0x02] = mode_value;
|
|
|
|
usb_buf[0x03] = 0x01;
|
|
usb_buf[0x04] = 0x01;
|
|
usb_buf[0x05] = 0x01;
|
|
|
|
usb_buf[0x06] = speed;
|
|
usb_buf[0x07] = brightness;
|
|
|
|
hid_send_feature_report(dev, usb_buf, N5312A_PACKET_DATA_LENGTH);
|
|
}
|