Publish LumaOps source
This commit is contained in:
+66
@@ -0,0 +1,66 @@
|
||||
/*---------------------------------------------------------*\
|
||||
| SapphireNitroGlowV1Controller.h |
|
||||
| |
|
||||
| Driver for Sapphire Nitro Glow V1 |
|
||||
| |
|
||||
| Adam Honse (CalcProgrammer1) 15 Jul 2020 |
|
||||
| |
|
||||
| This file is part of the OpenRGB project |
|
||||
| SPDX-License-Identifier: GPL-2.0-or-later |
|
||||
\*---------------------------------------------------------*/
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <string>
|
||||
#include "i2c_smbus.h"
|
||||
|
||||
#define SAPPHITE_NITRO_GLOW_V1_BRIGHTNESS_MIN 2;
|
||||
#define SAPPHITE_NITRO_GLOW_V1_BRIGHTNESS_MAX 0;
|
||||
|
||||
typedef unsigned char sapphire_dev_id;
|
||||
|
||||
enum
|
||||
{
|
||||
SAPPHIRE_NITRO_GLOW_V1_REG_MODE = 0x00,
|
||||
SAPPHIRE_NITRO_GLOW_V1_REG_BRIGHTNESS = 0x01,
|
||||
SAPPHIRE_NITRO_GLOW_V1_REG_RED = 0x03,
|
||||
SAPPHIRE_NITRO_GLOW_V1_REG_GREEN = 0x04,
|
||||
SAPPHIRE_NITRO_GLOW_V1_REG_BLUE = 0x05,
|
||||
};
|
||||
|
||||
enum
|
||||
{
|
||||
SAPPHIRE_NITRO_GLOW_V1_MODE_SAPPHIRE_BLUE = 0x00,
|
||||
SAPPHIRE_NITRO_GLOW_V1_MODE_RAINBOW = 0x01,
|
||||
SAPPHIRE_NITRO_GLOW_V1_MODE_BOARD_TEMPERATURE = 0x02,
|
||||
SAPPHIRE_NITRO_GLOW_V1_MODE_FAN_SPEED = 0x03,
|
||||
SAPPHIRE_NITRO_GLOW_V1_MODE_CUSTOM = 0x04,
|
||||
SAPPHIRE_NITRO_GLOW_V1_MODE_OFF = 0x05,
|
||||
};
|
||||
|
||||
class SapphireNitroGlowV1Controller
|
||||
{
|
||||
public:
|
||||
SapphireNitroGlowV1Controller(i2c_smbus_interface* bus, sapphire_dev_id dev, std::string dev_name);
|
||||
~SapphireNitroGlowV1Controller();
|
||||
|
||||
std::string GetDeviceLocation();
|
||||
std::string GetDeviceName();
|
||||
|
||||
unsigned char GetRed();
|
||||
unsigned char GetGreen();
|
||||
unsigned char GetBlue();
|
||||
|
||||
void SetColor(unsigned char red, unsigned char green, unsigned char blue);
|
||||
|
||||
unsigned char GetMode();
|
||||
void SetMode(unsigned char mode);
|
||||
|
||||
unsigned char GetBrightness();
|
||||
void SetBrightness(unsigned char brightness);
|
||||
|
||||
private:
|
||||
i2c_smbus_interface* bus;
|
||||
sapphire_dev_id dev;
|
||||
std::string name;
|
||||
};
|
||||
Reference in New Issue
Block a user