mirror of
https://github.com/CalcProgrammer1/OpenRGB.git
synced 2026-01-01 11:47:56 -05:00
33 lines
879 B
C++
33 lines
879 B
C++
/*---------------------------------------------------------*\
|
|
| Definitions for Philips Hue |
|
|
| |
|
|
| Adam Honse (calcprogrammer1@gmail.com), 9/15/2020 |
|
|
\*---------------------------------------------------------*/
|
|
|
|
#include "HueDeviceTypes.h"
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
#pragma once
|
|
|
|
class PhilipsHueController
|
|
{
|
|
public:
|
|
PhilipsHueController(hueplusplus::Light light_ptr, std::string bridge_ip);
|
|
~PhilipsHueController();
|
|
|
|
std::string GetLocation();
|
|
std::string GetName();
|
|
std::string GetVersion();
|
|
std::string GetManufacturer();
|
|
std::string GetUniqueID();
|
|
|
|
void SetColor(unsigned char red, unsigned char green, unsigned char blue);
|
|
|
|
private:
|
|
hueplusplus::Light light;
|
|
std::string location;
|
|
bool dark;
|
|
};
|