Difference between revisions of "Chroma:getColor"
From GiderosMobile
m (Text replacement - "<source" to "<syntaxhighlight") |
|||
(One intermediate revision by one other user not shown) | |||
Line 1: | Line 1: | ||
__NOTOC__ | __NOTOC__ | ||
− | + | '''Available since:''' Gideros 2020.7<br/> | |
− | ''' | + | '''Class:''' [[chroma]]<br/> |
− | ''' | + | |
− | === | + | === Description === |
− | + | Returns the colour of the LED at x,y on the device. | |
<syntaxhighlight lang="lua"> | <syntaxhighlight lang="lua"> | ||
(number) = Chroma:getColor(device,x,y) | (number) = Chroma:getColor(device,x,y) | ||
− | </ | + | </syntaxhighlight> |
− | === | + | |
− | '''device''': (text) | + | === Parameters === |
− | '''x''': (number) | + | '''device''': (text) name of the device, eg keyboard, mouse<br/> |
− | '''y''': (number) | + | '''x''': (number) column number of the device LED<br/> |
− | === | + | '''y''': (number) row number (if any) of the device, ignored in single row devices<br/> |
− | ''' | + | |
+ | === Return values === | ||
+ | '''Returns''' (number) BGR colour value of the LED at X,Y on the device<br/> | ||
{{Chroma}} | {{Chroma}} |
Latest revision as of 21:49, 6 November 2024
Available since: Gideros 2020.7
Class: chroma
Description
Returns the colour of the LED at x,y on the device.
(number) = Chroma:getColor(device,x,y)
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
Return values
Returns (number) BGR colour value of the LED at X,Y on the device