Difference between revisions of "Chroma:getColor"

From GiderosMobile
m (Text replacement - "<source" to "<syntaxhighlight")
Line 5: Line 5:
 
=== <translate>Description</translate> ===
 
=== <translate>Description</translate> ===
 
<translate>Returns the colour of the LED at x,y on the device.</translate>
 
<translate>Returns the colour of the LED at x,y on the device.</translate>
<source lang="lua">
+
<syntaxhighlight lang="lua">
 
(number) = Chroma:getColor(device,x,y)
 
(number) = Chroma:getColor(device,x,y)
 
</source>
 
</source>

Revision as of 15:26, 13 July 2023


Available since: Gideros 2020.7
Class: chroma

Description

Returns the colour of the LED at x,y on the device. <syntaxhighlight lang="lua"> (number) = Chroma:getColor(device,x,y) </source>

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.