Compare commits

...

1 Commits

3 changed files with 15 additions and 2 deletions

View File

@@ -52,7 +52,7 @@ namespace PepperDash.Essentials
DateTime LastAckMessage; DateTime LastAckMessage;
public string SystemUuid; public string SystemUuid { get; private set; }
List<MobileControlBridgeBase> RoomBridges = new List<MobileControlBridgeBase>(); List<MobileControlBridgeBase> RoomBridges = new List<MobileControlBridgeBase>();

View File

@@ -183,6 +183,10 @@ namespace PepperDash.Essentials.Room.MobileControl
/// </summary> /// </summary>
public const uint ServerUrl = 402; public const uint ServerUrl = 402;
/// <summary> /// <summary>
/// 403
/// </summary>
public const uint QrCodeUrl = 403;
/// <summary>
/// 512 /// 512
/// </summary> /// </summary>
public const uint RoomSpeedDialNamesJoinStart = 512; public const uint RoomSpeedDialNamesJoinStart = 512;
@@ -907,6 +911,7 @@ namespace PepperDash.Essentials.Room.MobileControl
Debug.Console(1, this, "Server user code changed: {0}", UserCode); Debug.Console(1, this, "Server user code changed: {0}", UserCode);
EISC.StringInput[StringJoin.UserCodeToSystem].StringValue = UserCode; EISC.StringInput[StringJoin.UserCodeToSystem].StringValue = UserCode;
EISC.StringInput[StringJoin.ServerUrl].StringValue = Parent.Config.ClientAppUrl; EISC.StringInput[StringJoin.ServerUrl].StringValue = Parent.Config.ClientAppUrl;
EISC.StringInput[StringJoin.QrCodeUrl].StringValue = string.Format("http://{0}/api/system/{1}/qr", Parent.Config.ServerUrl, Parent.SystemUuid);
} }
} }
} }

View File

@@ -101,8 +101,16 @@ namespace PepperDash.Essentials.DM
return (int)Tx.VideoSourceFeedback; return (int)Tx.VideoSourceFeedback;
}); });
AudioSourceNumericFeedback = new IntFeedback(() => AudioSourceNumericFeedback = new IntFeedback(() =>
{
try
{ {
return (int)Tx.AudioSourceFeedback; return (int)Tx.AudioSourceFeedback;
}
catch
{
return 0;
}
}); });
HdmiIn1HdcpCapabilityFeedback = new IntFeedback("HdmiIn1HdcpCapability", () => HdmiIn1HdcpCapabilityFeedback = new IntFeedback("HdmiIn1HdcpCapability", () =>