The Arctic RGB controller support 4 RGB channel and can be controlled over a CH341 USB-to-serial chip. The controller support two commands, one for identifying the controller on a serial port and one for setting the RGB values for each RGB channel. Since the controllers disables the RGB channels after ~1s, a keepalive thread is used.
27 lines
673 B
C++
27 lines
673 B
C++
/*-----------------------------------------*\
|
|
| ArcticController.h |
|
|
| |
|
|
| Controller Interface for Arctic devices |
|
|
| |
|
|
| Armin Wolf (Wer-Wolf) 01/09/2023 |
|
|
\*-----------------------------------------*/
|
|
|
|
#pragma once
|
|
#include "RGBController.h"
|
|
#include "serial_port.h"
|
|
|
|
class ArcticController
|
|
{
|
|
public:
|
|
ArcticController(const std::string &portname);
|
|
~ArcticController();
|
|
|
|
void SetChannels(std::vector<RGBColor> colors);
|
|
bool IsPresent();
|
|
|
|
std::string GetLocation();
|
|
|
|
private:
|
|
std::string port_name;
|
|
serial_port serialport;
|
|
};
|