|
|
|
@ -17,8 +17,8 @@ namespace Lib.Audio |
|
|
|
_buttonConfiguration = new DeviceButtonConfiguration {HasMuteButton = true, NumberOfButtons = 4}; //FixMe: remove hard coded config |
|
|
|
_buttonConfiguration = new DeviceButtonConfiguration {HasMuteButton = true, NumberOfButtons = 4}; //FixMe: remove hard coded config |
|
|
|
|
|
|
|
|
|
|
|
Channels = new List<IChannel>(); |
|
|
|
Channels = new List<IChannel>(); |
|
|
|
for (int i = 0; i < 8; i++) //FixMe: remove hard coded config |
|
|
|
for (uint i = 0; i < 8; i++) //FixMe: remove hard coded config |
|
|
|
Channels.Add(channelFactory.Create(_buttonConfiguration)); |
|
|
|
Channels.Add(channelFactory.Create(i, _buttonConfiguration)); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public List<IChannel> Channels { get; } |
|
|
|
public List<IChannel> Channels { get; } |
|
|
|
|