/*---------------------------------------------------------*\ | GenesisXenon200Controller.h | | | | Driver for Genesis Xenon 200 mouse | | | | chrabonszcz Jul 2023 | | | | This file is part of the OpenRGB project | | SPDX-License-Identifier: GPL-2.0-only | \*---------------------------------------------------------*/ #pragma once #include #include "RGBController.h" class GenesisXenon200Controller { public: GenesisXenon200Controller(hid_device* dev_handle, hid_device* cmd_dev_handle, const char* path); ~GenesisXenon200Controller(); void SaveMode(unsigned char mode, unsigned char value, RGBColor color); std::string GetLocationString(); private: hid_device* dev; hid_device* cmd_dev; std::string location; };