appearance_cue_across_sequences
Set appearance (color) on a cue across a range of sequences. Provides bulk color assignment using RGB or hex codes for grandMA2 lighting consoles.
Instructions
Set appearance (color) on a cue across a range of sequences.
Iterates over every sequence in the range and applies the color to the
specified cue. Supports RGB values (0-100) or hex color codes.
Args:
cue_id: Cue number (e.g., 1, 0.5)
sequence_start: First sequence number in the range
sequence_end: Last sequence number in the range (inclusive)
red: (Optional) Red component (0-100)
green: (Optional) Green component (0-100)
blue: (Optional) Blue component (0-100)
color: (Optional) Hex color code (e.g., "FF0000")
Returns:
dict: Result with commands_sent, count, and summary
Examples:
- Set cue 0.5 to black across sequences 101-125 (red=0, green=0, blue=0)
- Set cue 1 to red across sequences 101-103 (color="FF0000")
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| cue_id | Yes | ||
| sequence_start | Yes | ||
| sequence_end | Yes | ||
| red | No | ||
| green | No | ||
| blue | No | ||
| color | No |