Publish LumaOps source
This commit is contained in:
@@ -0,0 +1,36 @@
|
||||
/*---------------------------------------------------------*\
|
||||
| ColorfulGPUController.h |
|
||||
| |
|
||||
| Driver for Colorful GPU |
|
||||
| |
|
||||
| This file is part of the OpenRGB project |
|
||||
| SPDX-License-Identifier: GPL-2.0-or-later |
|
||||
\*---------------------------------------------------------*/
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <string>
|
||||
#include "i2c_smbus.h"
|
||||
#include "RGBController.h"
|
||||
|
||||
typedef unsigned char colorful_gpu_dev_id;
|
||||
|
||||
#define COLORFUL_PACKET_LENGTH_V1 11
|
||||
#define COLORFUL_PACKET_LENGTH_V2 122
|
||||
|
||||
class ColorfulGPUController
|
||||
{
|
||||
public:
|
||||
ColorfulGPUController(i2c_smbus_interface* bus, colorful_gpu_dev_id dev, std::string dev_name);
|
||||
~ColorfulGPUController();
|
||||
|
||||
std::string GetDeviceLocation();
|
||||
std::string GetDeviceName();
|
||||
|
||||
void SetDirect(RGBColor color);
|
||||
|
||||
private:
|
||||
i2c_smbus_interface * bus;
|
||||
colorful_gpu_dev_id dev;
|
||||
std::string name;
|
||||
};
|
||||
Reference in New Issue
Block a user