mirror of
https://github.com/CalcProgrammer1/OpenRGB.git
synced 2026-01-02 12:17:51 -05:00
58 lines
1.7 KiB
C++
58 lines
1.7 KiB
C++
/*-----------------------------------------*\
|
|
| SapphireNitroGlowV1Controller.h |
|
|
| |
|
|
| Definitions and types for Sapphire Nitro |
|
|
| Glow V1 GPU RGB lighting controller |
|
|
| |
|
|
| Adam Honse (CalcProgrammer1) 7/15/2020 |
|
|
\*-----------------------------------------*/
|
|
|
|
#include <string>
|
|
#include "i2c_smbus.h"
|
|
|
|
#pragma once
|
|
|
|
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);
|
|
~SapphireNitroGlowV1Controller();
|
|
|
|
std::string GetDeviceLocation();
|
|
|
|
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);
|
|
|
|
private:
|
|
i2c_smbus_interface* bus;
|
|
sapphire_dev_id dev;
|
|
|
|
};
|