Home AMX User Forum AMX Technical Discussion
Options

Varia: How to control the side LEDs

I didn't find any Send_Command in the manual to control the side LEDs.

How can the side LEDs be controlled?

And how does the touch panel internal color selection work on the demo tp5 file?

Best Answer

  • Options
    HARMAN_RobHARMAN_Rob Posts: 230
    Answer ✓
    This will be added in the next rev of the manual:

    "'^WLD-<command>,<action>'"

    Variables:

    COMMAND

    Indicates the LED ID number or Brightness:

    • 0 - All LED status
    • 1 - Red
    • 2 - Green
    • 3 - Blue
    • 10 - All LED brightness
    • 11 - Red brightness
    • 12 - Green brightness
    • 13 - Blue brightness

    ACTION

    For LED on/off commands 0, 1, 2, 3:

    • 0 - Turns LED Off
    • 1 - Turns LED On

    For LED Brightness commands:

    0 - 100 : Percentage of LED brightness when LED is on.

    Examples:
    SEND_COMMAND Panel,"'^WLD-1,1'" // Turn on the Red LED
    SEND_COMMAND Panel,"'^WLD-10,50'" // Set the Red, Blue and Green LED brightness to 50%.

Answers

  • Options
    RedingReding Posts: 9

    Thank you for this information.
    This command works.

Sign In or Register to comment.