Update a joystick's LED color.
int SDL_SetJoystickLED(SDL_Joystick *joystick, Uint8 red, Uint8 green, Uint8 blue);
joystick | The joystick to update |
red | The intensity of the red LED |
green | The intensity of the green LED |
blue | The intensity of the blue LED |
Returns 0 on success or a negative error code on failure; call SDL_GetError() for more information.
An example of a joystick LED is the light on the back of a PlayStation 4's DualShock 4 controller.
This function is available since SDL 3.0.0.