Added mobileinfo command to help with mobile control debugging

This commit is contained in:
Heath Volmer 2018-03-16 14:46:52 -06:00
parent 97a44ffa4f
commit fa8ea4cef6
7 changed files with 42 additions and 7 deletions

View file

@ -134,6 +134,14 @@ namespace PepperDash.Essentials.Room.Cotija
/// </summary>
public bool ConfigIsLoaded { get; private set; }
public override string RoomName
{
get {
var name = EISC.StringOutput[StringJoin.ConfigRoomName].StringValue;
return string.IsNullOrEmpty(name) ? "Not Loaded" : name;
}
}
CotijaDdvc01DeviceBridge SourceBridge;