1.0.14 Removed extra volume set from cooldown; removed room-on/source-on check from RunDefaultRoute in HuddleRoom

This commit is contained in:
Heath Volmer
2018-01-04 10:47:50 -07:00
parent 02cfc46f90
commit d1646f8216
5 changed files with 7 additions and 5 deletions

View File

@@ -4,5 +4,5 @@
[assembly: AssemblyCompany("PepperDash Technology Corp")]
[assembly: AssemblyProduct("PepperDashEssentials")]
[assembly: AssemblyCopyright("Copyright © PepperDash Technology Corp 2017")]
[assembly: AssemblyVersion("1.0.12.*")]
[assembly: AssemblyVersion("1.0.14.*")]

View File

@@ -187,8 +187,6 @@ namespace PepperDash.Essentials
disp.IsCoolingDownFeedback.OutputChange += (o, a) =>
{
IsCoolingDownFeedback.FireUpdate();
if (IsCoolingDownFeedback.BoolValue)
(DefaultDisplay as IBasicVolumeWithFeedback).SetVolume(DefaultVolume);
};
}
@@ -216,8 +214,8 @@ namespace PepperDash.Essentials
/// </summary>
public void RunDefaultRoute()
{
if (DefaultSourceItem != null && !OnFeedback.BoolValue)
RunRouteAction(DefaultSourceItem);
//if (DefaultSourceItem != null && !OnFeedback.BoolValue)
RunRouteAction(DefaultSourceItem);
}
/// <summary>