Skip to content

Commit

Permalink
Increase delay between direct mode packets to 10ms
Browse files Browse the repository at this point in the history
  • Loading branch information
CalcProgrammer1 committed Oct 9, 2021
1 parent 6287b22 commit b6654db
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -139,15 +139,15 @@ void HyperXAlloyFPSController::SetLEDsDirect(std::vector<RGBColor> colors)
red_color_data
);

std::this_thread::sleep_for(2ms);
std::this_thread::sleep_for(10ms);

SendDirect
(
HYPERX_ALLOY_FPS_COLOR_CHANNEL_GREEN,
grn_color_data
);

std::this_thread::sleep_for(2ms);
std::this_thread::sleep_for(10ms);

SendDirect
(
Expand Down

0 comments on commit b6654db

Please sign in to comment.