mirror of
https://github.com/CalcProgrammer1/OpenRGB.git
synced 2025-12-24 07:47:49 -05:00
137 lines
5.7 KiB
C++
137 lines
5.7 KiB
C++
#include "Detector.h"
|
|
#include "CorsairVengeanceProController.h"
|
|
#include "RGBController.h"
|
|
#include "RGBController_CorsairVengeancePro.h"
|
|
#include "i2c_smbus.h"
|
|
#include <vector>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
using namespace std::chrono_literals;
|
|
|
|
/******************************************************************************************\
|
|
* *
|
|
* TestForCorsairVengeanceProController *
|
|
* *
|
|
* Tests the given address to see if a Corsair Pro controller exists there. *
|
|
* *
|
|
\******************************************************************************************/
|
|
|
|
bool TestForCorsairVengeanceProController(i2c_smbus_interface* bus, unsigned char address)
|
|
{
|
|
bool pass = false;
|
|
|
|
int res = bus->i2c_smbus_write_quick(address, I2C_SMBUS_WRITE);
|
|
|
|
if (res >= 0)
|
|
{
|
|
pass = true;
|
|
|
|
res = bus->i2c_smbus_read_byte_data(address, 0x43);
|
|
|
|
if (res != 0x1C)
|
|
{
|
|
pass = false;
|
|
}
|
|
|
|
res = bus->i2c_smbus_read_byte_data(address, 0x44);
|
|
|
|
if (!((res == 0x03) || (res == 0x04)))
|
|
{
|
|
pass = false;
|
|
}
|
|
}
|
|
|
|
std::this_thread::sleep_for(10ms);
|
|
|
|
return(pass);
|
|
|
|
} /* TestForCorsairVengeanceProController() */
|
|
|
|
/******************************************************************************************\
|
|
* *
|
|
* DetectCorsairVengeanceProControllers *
|
|
* *
|
|
* Detect Corsair Vengeance Pro controllers on the enumerated I2C busses. *
|
|
* *
|
|
* bus - pointer to i2c_smbus_interface where Aura device is connected *
|
|
* dev - I2C address of Aura device *
|
|
* *
|
|
\******************************************************************************************/
|
|
|
|
void DetectCorsairVengeanceProControllers(std::vector<i2c_smbus_interface*> &busses, std::vector<RGBController*> &rgb_controllers)
|
|
{
|
|
CorsairVengeanceProController* new_corsair_pro;
|
|
RGBController_CorsairVengeancePro* new_controller;
|
|
|
|
for (unsigned int bus = 0; bus < busses.size(); bus++)
|
|
{
|
|
// Check for Corsair controller at 0x58
|
|
if (TestForCorsairVengeanceProController(busses[bus], 0x58))
|
|
{
|
|
new_corsair_pro = new CorsairVengeanceProController(busses[bus], 0x58);
|
|
new_controller = new RGBController_CorsairVengeancePro(new_corsair_pro);
|
|
rgb_controllers.push_back(new_controller);
|
|
}
|
|
|
|
// Check for Corsair controller at 0x59
|
|
if (TestForCorsairVengeanceProController(busses[bus], 0x59))
|
|
{
|
|
new_corsair_pro = new CorsairVengeanceProController(busses[bus], 0x59);
|
|
new_controller = new RGBController_CorsairVengeancePro(new_corsair_pro);
|
|
rgb_controllers.push_back(new_controller);
|
|
}
|
|
|
|
// Check for Corsair controller at 0x5A
|
|
if (TestForCorsairVengeanceProController(busses[bus], 0x5A))
|
|
{
|
|
new_corsair_pro = new CorsairVengeanceProController(busses[bus], 0x5A);
|
|
new_controller = new RGBController_CorsairVengeancePro(new_corsair_pro);
|
|
rgb_controllers.push_back(new_controller);
|
|
}
|
|
|
|
// Check for Corsair controller at 0x5B
|
|
if (TestForCorsairVengeanceProController(busses[bus], 0x5B))
|
|
{
|
|
new_corsair_pro = new CorsairVengeanceProController(busses[bus], 0x5B);
|
|
new_controller = new RGBController_CorsairVengeancePro(new_corsair_pro);
|
|
rgb_controllers.push_back(new_controller);
|
|
}
|
|
|
|
// Check for Corsair controller at 0x5C
|
|
if (TestForCorsairVengeanceProController(busses[bus], 0x5C))
|
|
{
|
|
new_corsair_pro = new CorsairVengeanceProController(busses[bus], 0x5C);
|
|
new_controller = new RGBController_CorsairVengeancePro(new_corsair_pro);
|
|
rgb_controllers.push_back(new_controller);
|
|
}
|
|
|
|
// Check for Corsair controller at 0x5D
|
|
if (TestForCorsairVengeanceProController(busses[bus], 0x5D))
|
|
{
|
|
new_corsair_pro = new CorsairVengeanceProController(busses[bus], 0x5D);
|
|
new_controller = new RGBController_CorsairVengeancePro(new_corsair_pro);
|
|
rgb_controllers.push_back(new_controller);
|
|
}
|
|
|
|
// Check for Corsair controller at 0x5E
|
|
if (TestForCorsairVengeanceProController(busses[bus], 0x5E))
|
|
{
|
|
new_corsair_pro = new CorsairVengeanceProController(busses[bus], 0x5E);
|
|
new_controller = new RGBController_CorsairVengeancePro(new_corsair_pro);
|
|
rgb_controllers.push_back(new_controller);
|
|
}
|
|
|
|
// Check for Corsair controller at 0x5F
|
|
if (TestForCorsairVengeanceProController(busses[bus], 0x5F))
|
|
{
|
|
new_corsair_pro = new CorsairVengeanceProController(busses[bus], 0x5F);
|
|
new_controller = new RGBController_CorsairVengeancePro(new_corsair_pro);
|
|
rgb_controllers.push_back(new_controller);
|
|
}
|
|
}
|
|
|
|
} /* DetectCorsairVengeanceProControllers() */
|
|
|
|
REGISTER_I2C_DETECTOR("Corsair Vengeance Pro", DetectCorsairVengeanceProControllers);
|