config:remotecontrol:airlite
Differences
This shows you the differences between two versions of the page.
| Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
| config:remotecontrol:airlite [2018/03/21 07:08] – tw | config:remotecontrol:airlite [2022/04/15 15:03] (current) – Beispiel aktualisiert tondose | ||
|---|---|---|---|
| Line 5: | Line 5: | ||
| The AIRLITE is an 8-channel 19" mixer which includes four stereo USB audio interfaces, and a USB control module for fader start etc., all through a single USB connection. | The AIRLITE is an 8-channel 19" mixer which includes four stereo USB audio interfaces, and a USB control module for fader start etc., all through a single USB connection. | ||
| - | The WEBSTATION is the smaller | + | The WEBSTATION is the little |
| Configuration steps are similar for both models. | Configuration steps are similar for both models. | ||
| Line 33: | Line 33: | ||
| Then open the standalone configuration app, or the Control Panel, go to the //Remote Control// page, and add a new //D&R AIRLITE// or //D&R WEBSTATION// | Then open the standalone configuration app, or the Control Panel, go to the //Remote Control// page, and add a new //D&R AIRLITE// or //D&R WEBSTATION// | ||
| + | We will demonstrate the configuration of the AIRLITE in the remainder of this article; WEBSTATION is similar. | ||
| ==== Players ==== | ==== Players ==== | ||
| Line 47: | Line 48: | ||
| ==== Cartwall ==== | ==== Cartwall ==== | ||
| - | The AIRLITE has 16 buttons, in two rows (labeled " | + | The AIRLITE has 16 buttons |
| {{ : | {{ : | ||
| Line 63: | Line 64: | ||
| ==== Advanced ==== | ==== Advanced ==== | ||
| - | On the // | + | On the // |
| ===== Scripting ===== | ===== Scripting ===== | ||
| - | The AIRLITE remote offers an interface which can be used to communicate with the console from a script. To access the interface, use the following function: | + | The AIRLITE/ |
| function AirliteRemote(iIndex: | function AirliteRemote(iIndex: | ||
| + | |||
| + | Note: Name of the function is always '' | ||
| | | ||
| Remotes are 0-based, so '' | Remotes are 0-based, so '' | ||
| | | ||
| - | At the time being, the '' | + | Up to mAirList 6.2, the '' |
| procedure SetLED(iNumber: | procedure SetLED(iNumber: | ||
| procedure SetLEDBlink(iNumber: | procedure SetLEDBlink(iNumber: | ||
| - | The first one sets an LED of one of the push buttons to a particular color, the second one does the same, but with flashing. The available button IDs are: | + | The first one sets an LED of one of the push buttons to a particular color, the second one does the same, but with flashing. The available button IDs for AIRLITE |
| * " | * " | ||
| * " | * " | ||
| + | * 255 (hex '' | ||
| + | |||
| + | And for WEBSTATION, given the lower number of butttons: | ||
| + | |||
| + | * " | ||
| + | * " | ||
| * 255 (hex '' | * 255 (hex '' | ||
| Line 95: | Line 104: | ||
| * '' | * '' | ||
| * '' | * '' | ||
| + | |||
| + | Starting with mAirList 6.3, access to the following low level remote functions is possible through the '' | ||
| + | |||
| + | function RemoteOn(iModule: | ||
| + | function RemoteCue(iCueType: | ||
| + | function RemoteCueReset: | ||
| + | function RemoteAutoCueAnnouncer(iAction: | ||
| + | function RemoteAutoCueCRM(iAction: | ||
| + | function RemoteNonStop(iAction: | ||
| + | function RemoteComm(iModule: | ||
| + | function RemoteCough(iModule: | ||
| + | function RemoteVT(iModule: | ||
| + | |||
| + | Possible values for '' | ||
| + | |||
| + | * '' | ||
| + | * '' | ||
| + | * '' | ||
| + | * '' | ||
| + | * '' | ||
| + | * '' | ||
| + | * '' | ||
| + | * '' | ||
| + | * '' | ||
| + | |||
| + | Possible values for '' | ||
| + | |||
| + | * '' | ||
| + | * '' | ||
| + | * '' | ||
| + | * '' | ||
| + | * '' | ||
| + | * '' | ||
| + | * '' | ||
| + | * '' | ||
| + | * '' | ||
| + | * '' | ||
| + | * '' | ||
| + | * '' | ||
| + | |||
| + | Possible values for '' | ||
| + | |||
| + | * '' | ||
| + | * '' | ||
| + | * '' | ||
| + | |||
| + | ==== Example ==== | ||
| + | |||
| + | Switch on //Cue// over AIR input when Extra-PFL is launched: | ||
| + | |||
| + | procedure OnExtPFLOn(Item: | ||
| + | begin | ||
| + | if ExtPFLCount <> 0 then | ||
| + | AirliteRemote(0).RemoteCue(actAir, | ||
| + | end; | ||
| + | |||
| + | … and turn off when Extra-PFL is closed: | ||
| + | |||
| + | procedure OnExtPFLOff(Item: | ||
| + | begin | ||
| + | if ExtPFLCount = 0 then | ||
| + | AirliteRemote(0).RemoteCue(actAir, | ||
| + | end; | ||
| + | |||
| + | |||
| + | |||
| + | |||
config/remotecontrol/airlite.1521616127.txt.gz · Last modified: (external edit)