gamepad_set_colour

This function can be used to set the colour of the LEDs within a PlayStation controller. You specify the device slot to set, and then give a colour, which can be any of the colour constants or a colour value created using the specific colour functions or a HEX value(like $FFFFFFF).

 

Syntax:

gamepad_set_colour(device, colour);

ArgumentTypeDescription
deviceRealWhich gamepad device "slot" to set.
colourColourThe colour to use.

 

Returns:

N/A

 

Example:

if (health < 10)
{
    gamepad_set_colour(0, c_red);
}

The above code will set the PlayStation controller LEDs to red if the health variable falls below 10.