| 140 | } |
| 141 | |
| 142 | void EVGAMouseController::SetLed(uint8_t index, uint8_t brightness, uint8_t speed, RGBColor color) |
| 143 | { |
| 144 | std::vector<RGBColor> colors; |
| 145 | colors.push_back(color); |
| 146 | |
| 147 | SetLed(index, brightness, speed, colors, false); |
| 148 | } |
| 149 | |
| 150 | void EVGAMouseController::SetLed(uint8_t index, uint8_t brightness, uint8_t speed, const std::vector<RGBColor>& colors) |
| 151 | { |
no test coverage detected