# RGBMultiplexer > Symcon documentation · English · generated on 2026-09-26 > Index: https://www.symcon.de/en/llms.txt Source: https://www.symcon.de/en/service/documentation/module-reference/logic/rgbmultiplexer/ _Requires Symcon >= 4.2_ ### function scope - Provides a color wheel that controls three individual R, G, B channels in the background - If the R, G, B channels change the value the new state is also transferred to the color wheel ### Software installation - Install the RGB Multiplexer module via the [Module Store](https://www.symcon.de/en/service/documentation/components/management-console/module-store/). ### Setting up instances in IP-Symcon - Under "Add Instance" the 'RGB Multiplexer' module can be found using the quick filter. - More information about adding instances in the [Instances documentation](https://www.symcon.de/en/service/documentation/basics/instances/) #### Configuration Page: | Name | Description | | ---------------- | ----------------------------------- | | Variable (R) | Variable for the Red Channel | | Variable (G) | Variable for the Green Channel | | Variable (B) | Variable for the Blue Channel | | Button "Set RGB" | Sends the RGB value to the channels | ### statusvariables The status variables/categories are created automatically. Deleting individual ones can lead to malfunctions. #### Statusvariables | Name | Type | Description | | ----- | ------- | ----------------------------------- | | Color | Integer | Contains value matching color wheel | ### Visualization The Visualization is used to display the variables. The color can be set via the color wheel. ## RGBM_RequestStatus Source: https://www.symcon.de/en/service/documentation/module-reference/logic/rgbmultiplexer/rgbm-requeststatus/ `bool RGBM_RequestStatus(int $InstanceID)` _Requires Symcon >= 4.2_ **Parameters** - `$InstanceID` (int): ID of the Instance **Returns** (bool): If the command could be executed successfully, it returns __TRUE__ as result, otherwise __FALSE__. ID of the Instance **Example** ```text RGBM_RequestStatus(12345); ``` ## RGBM_SetRGB Source: https://www.symcon.de/en/service/documentation/module-reference/logic/rgbmultiplexer/rgbm-setrgb/ `bool RGBM_SetRGB(int $InstanceID, int $Red, int $Green, int $Blue)` _Requires Symcon >= 4.2_ **Parameters** - `$InstanceID` (int): ID of the Instance - `$Red` (int): Value of the red color channel - `$Green` (int): Value of the green color channel - `$Blue` (int): Value of the blue color channel **Returns** (bool): If the command could be executed successfully, it returns __TRUE__ as result, otherwise __FALSE__. Value of the blue color channel **Example** ```text RGBM_SetRGB(12345, 255, 255, 255); ```