mirror of
https://github.com/CalcProgrammer1/OpenRGB.git
synced 2026-01-03 20:57:53 -05:00
63 lines
2.2 KiB
C++
63 lines
2.2 KiB
C++
/*-----------------------------------------*\
|
|
| NanoleafController.h |
|
|
| |
|
|
| API Interface for Nanoleaf devices |
|
|
| |
|
|
| Nikita Rushmanov 01/13/2022 |
|
|
\*-----------------------------------------*/
|
|
|
|
#pragma once
|
|
|
|
#include "RGBController.h"
|
|
#include "net_port.h"
|
|
|
|
#define NANOLEAF_DIRECT_MODE_EFFECT_NAME "*Dynamic*"
|
|
#define NANOLEAF_LIGHT_PANELS_MODEL "NL22"
|
|
#define NANOLEAF_CANVAS_MODEL "NL29"
|
|
#define NANOLEAF_SHAPES_MODEL "NL42"
|
|
|
|
class NanoleafController
|
|
{
|
|
public:
|
|
NanoleafController(std::string a_address, int a_port, std::string a_auth_token);
|
|
|
|
static std::string Pair(std::string address, int port);
|
|
static void Unpair(std::string address, int port, std::string auth_token);
|
|
|
|
void SelectEffect(std::string effect_name);
|
|
void StartExternalControl();
|
|
void SetBrightness(int a_brightness);
|
|
void UpdateLEDs(std::vector<RGBColor>& colors);
|
|
|
|
std::string GetAuthToken();
|
|
std::string GetName();
|
|
std::string GetSerial();
|
|
std::string GetManufacturer();
|
|
std::string GetFirmwareVersion();
|
|
std::string GetModel();
|
|
std::vector<std::string>& GetEffects();
|
|
std::vector<int>& GetPanelIds();
|
|
std::string GetSelectedEffect();
|
|
int GetBrightness();
|
|
|
|
private:
|
|
net_port external_control_socket;
|
|
|
|
std::string address;
|
|
int port;
|
|
std::string location;
|
|
std::string auth_token;
|
|
|
|
std::string name;
|
|
std::string serial;
|
|
std::string manufacturer;
|
|
std::string firmware_version;
|
|
std::string model;
|
|
|
|
std::vector<std::string> effects;
|
|
std::vector<int> panel_ids;
|
|
|
|
std::string selectedEffect;
|
|
int brightness;
|
|
};
|