/*-----------------------------------------*\ | RGBController_SteelSeriesApex.cpp | | | | Generic RGB Interface for SteelSeries | | Apex 7 Keyboard | | | | Eric Samuelson (edbgon) 7/5/2020 | \*-----------------------------------------*/ #pragma once #include #include "RGBController.h" #include "SteelSeriesApexBaseController.h" #include "SteelSeriesGeneric.h" class RGBController_SteelSeriesApex : public RGBController { public: RGBController_SteelSeriesApex(SteelSeriesApexBaseController* steelseries_ptr); ~RGBController_SteelSeriesApex(); void SetupZones(); void ResizeZone(int zone, int new_size); void DeviceUpdateLEDs(); void UpdateZoneLEDs(int zone); void UpdateSingleLED(int led); void SetCustomMode(); void DeviceUpdateMode(); private: SteelSeriesApexBaseController* steelseries; steelseries_type proto_type; std::chrono::time_point last_update_time; };