Example #1
0
 public BridgeSettings(string address, IMIDIController controller, Action <string, bool> messageWriter, string syncID,
                       RecButtonBehaviorEnum recButtonBehavior, ChannelRecButtonBehaviorEnum channelRecButtonBehavior)
 {
     this.Address                  = address;
     this.Controller               = controller;
     this.MessageWriter            = messageWriter;
     this.SyncID                   = syncID;
     this.RecButtonBehavior        = recButtonBehavior;
     this.ChannelRecButtonBehavior = channelRecButtonBehavior;
     this.AuxButtonBehavior        = AuxButtonBehaviorEnum.Release;
 }
Example #2
0
 public BridgeSettings(string address, IMIDIController controller, Action <string, bool> messageWriter, RecButtonBehaviorEnum recButtonBehavior, ChannelRecButtonBehaviorEnum channelRecButtonBehavior)
     : this(address, controller, messageWriter, "SYNC_ID", recButtonBehavior, channelRecButtonBehavior)
 {
 }