User Tools

Site Tools


config:remotecontrol:airlite

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
config:remotecontrol:airlite [2020/01/31 09:59] – [Scripting] twconfig: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 brother of the AIRLITE, featuring 6 channels and three USB audio interfaces.+The WEBSTATION is the little brother of the AIRLITE, featuring 6 channels and three USB audio interfaces.
  
 Configuration steps are similar for both models. Configuration steps are similar for both models.
Line 76: Line 76:
 Remotes are 0-based, so ''AirliteRemote(0)'' will return a reference to the first remote in the system. Remotes are 0-based, so ''AirliteRemote(0)'' will return a reference to the first remote in the system.
      
-At the time being, the ''IAirliteRemote'' interface offers two useful functions:+Up to mAirList 6.2, the ''IAirliteRemote'' interface offers two useful functions:
  
   procedure SetLED(iNumber: integer; iColor: TAirliteColor);   procedure SetLED(iNumber: integer; iColor: TAirliteColor);
Line 149: Line 149:
   * ''alaActivate''   * ''alaActivate''
   * ''alaToggle''   * ''alaToggle''
 +
 +==== Example ====
 +
 +Switch on //Cue// over AIR input when Extra-PFL is launched:
 +
 +  procedure OnExtPFLOn(Item: IPlaylistItem; ExtPFLCount: integer);
 +  begin
 +    if ExtPFLCount <> 0 then
 +      AirliteRemote(0).RemoteCue(actAir, alaActivate);
 +  end;
 +
 +… and turn off when Extra-PFL is closed:
 +
 +  procedure OnExtPFLOff(Item: IPlaylistItem; ExtPFLCount: integer);
 +  begin
 +    if ExtPFLCount = 0 then
 +      AirliteRemote(0).RemoteCue(actAir, alaDeactivate);
 +  end;
 + 
 +
 +
  
config/remotecontrol/airlite.1580464771.txt.gz · Last modified: 2020/01/31 09:59 by tw

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki