mirror of
https://github.com/CalcProgrammer1/OpenRGB.git
synced 2026-04-04 14:14:17 -04:00
* Add zone flags to indicate if fields are manually configurable and if they have been manually configured * Add flags field to segment type * Add segment flags for group start and group member * Add color mode support flags to zone (RGB, RBG, GRB, GBR, BRG, BGR) * Add color mode enum to zone * Update zone and segment description functions to support new fields * Rename the effects-only configurable size flag * Remove zone type and matrix map configuration from E1.31 manual configuration, use zone editor instead * Rework DeviceResizeZone to DeviceConfigureZone * Rework most ARGB controllers to allow zone customizations * Rework DRGBController to define devices in DRGBDevices list (similar to RazerDevices) * Rework NollieController to define devices in NollieDevices list (similar to RazerDevices)
58 lines
2.0 KiB
C++
58 lines
2.0 KiB
C++
/*---------------------------------------------------------*\
|
|
| NollieController.h |
|
|
| |
|
|
| Driver for Nollie |
|
|
| |
|
|
| Name (cnn1236661) 25 Jun 2023 |
|
|
| |
|
|
| This file is part of the OpenRGB project |
|
|
| SPDX-License-Identifier: GPL-2.0-or-later |
|
|
\*---------------------------------------------------------*/
|
|
|
|
#pragma once
|
|
|
|
#include <chrono>
|
|
#include <vector>
|
|
#include <hidapi.h>
|
|
#include "NollieDevices.h"
|
|
#include "RGBController.h"
|
|
|
|
#define NOLLIE32_MOS_TRIGGER_CH 26
|
|
#define NOLLIE32_MOS_TRIGGER_LED 20
|
|
#define NOLLIE32_FLAG1_CHANNEL 15
|
|
#define NOLLIE32_FLAG2_CHANNEL 31
|
|
|
|
class NollieController
|
|
{
|
|
public:
|
|
NollieController(hid_device* dev_handle, const char* path, unsigned short vid, unsigned short pid, std::string dev_name);
|
|
|
|
std::string GetLocationString();
|
|
std::string GetNameString();
|
|
std::string GetSerialString();
|
|
|
|
unsigned short GetUSBVID();
|
|
unsigned short GetUSBPID();
|
|
unsigned short GetNumChannels();
|
|
unsigned short GetLEDsPerChannel();
|
|
|
|
const int* GetChannelIndex();
|
|
std::string GetChannelName(unsigned short channel);
|
|
|
|
void SetMos(bool mos);
|
|
void InitChLEDs(unsigned int *led_num_list,int ch_num);
|
|
void SendUpdate();
|
|
void SetChannelLEDs(unsigned char channel, RGBColor * colors, unsigned int num_colors);
|
|
|
|
private:
|
|
hid_device* dev;
|
|
std::string location;
|
|
std::string name;
|
|
unsigned short usb_vid;
|
|
unsigned short usb_pid;
|
|
unsigned int device_index;
|
|
|
|
void SendPacket(unsigned char channel,RGBColor * colors,unsigned int num_colors);
|
|
void SendPacketFS(unsigned char channel,unsigned char packet_id,RGBColor * colors,unsigned int num_colors);
|
|
};
|