Difference between revisions of "Chroma:setColor"
From GiderosMobile
m (Anthony moved page Chroma.setColor to Chroma:setColor without leaving a redirect) |
|||
Line 9: | Line 9: | ||
</source> | </source> | ||
=== <translate>Parameters</translate> === | === <translate>Parameters</translate> === | ||
− | ''' | + | '''device''': (text) <translate>Name of the device, eg keyboard, mouse.</translate><br/> |
− | ''' | + | '''x''': (number) <translate>Column number of the device LED.</translate><br/> |
+ | '''y''': (number) <translate>Row number (if any) of the device, ignored in single row devices.</translate><br/> | ||
'''colours''': (number) <translate>BGR colour value.</translate><br/> | '''colours''': (number) <translate>BGR colour value.</translate><br/> | ||
'''colours''': (table) <translate>Multiple BGR colour values.</translate><br/> | '''colours''': (table) <translate>Multiple BGR colour values.</translate><br/> |
Revision as of 14:27, 27 June 2020
Available since: Gideros 2020.6
Class: chroma
Description
Basically this sets the colour for the LED at x,y on the device. Multiple colours increment the x.
() = Chroma:setColor(device,x,y,colors,flush)
Parameters
device: (text) Name of the device, eg keyboard, mouse.
x: (number) Column number of the device LED.
y: (number) Row number (if any) of the device, ignored in single row devices.
colours: (number) BGR colour value.
colours: (table) Multiple BGR colour values.
flush: (bool) True to send the colours to the device, default false. optional
Return values