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 [2019/07/09 16:18] – external edit 127.0.0.1 | 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 76: | Line 76: | ||
| 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: | ||
| Line 104: | 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.1562689102.txt.gz · Last modified: by 127.0.0.1