Publish LumaOps source

This commit is contained in:
LumaOps release export
2026-09-03 01:18:36 +02:00
commit 7f1c0e5f71
2363 changed files with 501543 additions and 0 deletions
@@ -0,0 +1,45 @@
/*---------------------------------------------------------*\
| LaviewTechnologyDetect.cpp |
| |
| Detector for Laview Technology brand Mice (Glorious) |
| |
| This file is part of the OpenRGB project |
| SPDX-License-Identifier: GPL-2.0-or-later |
\*---------------------------------------------------------*/
#include <hidapi.h>
#include <sstream>
#include <iomanip>
#include <string>
#include "Detector.h"
#include "LaviewTechnologyController.h"
#include "RGBController.h"
#include "RGBController_LaviewTechnology.h"
#include "LogManager.h"
#define LAVIEW_TECHNOLOGY_VID 0x22D4
#define GLORIOUS_MODEL_I_PID 0x1503 // Wired
/******************************************************************************************\
* *
* DetectLaviewTechnologyMouse *
* *
* Tests the USB address to see if a Laview Technology controller exists there. *
* *
\******************************************************************************************/
static void DetectLaviewTechnologyMouse(hid_device_info* info, const std::string& name)
{
hid_device* dev = hid_open_path(info->path);
if(dev)
{
LaviewTechnologyController* controller = new LaviewTechnologyController(dev, info, name);
RGBController_LaviewTechnology* rgb_controller = new RGBController_LaviewTechnology(controller);
ResourceManager::get()->RegisterRGBController(rgb_controller);
}
}
REGISTER_HID_DETECTOR_IPU("Glorious Model I", DetectLaviewTechnologyMouse, LAVIEW_TECHNOLOGY_VID, GLORIOUS_MODEL_I_PID, 1, 0xFF01, 0x02);