mirror of
https://github.com/CalcProgrammer1/OpenRGB.git
synced 2026-01-04 13:17:49 -05:00
66 lines
2.5 KiB
C++
66 lines
2.5 KiB
C++
/*---------------------------------------------------------*\
|
|
| NanoleafController.h |
|
|
| |
|
|
| Driver for Nanoleaf |
|
|
| |
|
|
| Nikita Rushmanov 13 Jan 2022 |
|
|
| |
|
|
| This file is part of the OpenRGB project |
|
|
| SPDX-License-Identifier: GPL-2.0-only |
|
|
\*---------------------------------------------------------*/
|
|
|
|
#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;
|
|
};
|