mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-08-31 19:08:29 +00:00
Forces video sync outputs to update at boot
This commit is contained in:
parent
3a162ee9dd
commit
e593f1c281
1 changed files with 6 additions and 1 deletions
|
|
@ -205,6 +205,11 @@ namespace PepperDash.Essentials.DM
|
||||||
Dmps.DMOutputChange += Dmps_DMOutputChange;
|
Dmps.DMOutputChange += Dmps_DMOutputChange;
|
||||||
Dmps.DMSystemChange += Dmps_DMSystemChange;
|
Dmps.DMSystemChange += Dmps_DMSystemChange;
|
||||||
|
|
||||||
|
foreach (var input in VideoInputSyncFeedbacks)
|
||||||
|
{
|
||||||
|
input.Value.FireUpdate();
|
||||||
|
}
|
||||||
|
|
||||||
return base.CustomActivate();
|
return base.CustomActivate();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -832,7 +837,7 @@ namespace PepperDash.Essentials.DM
|
||||||
}
|
}
|
||||||
void Dmps_DMOutputChange(Switch device, DMOutputEventArgs args)
|
void Dmps_DMOutputChange(Switch device, DMOutputEventArgs args)
|
||||||
{
|
{
|
||||||
Debug.Console(2, this, "DMOutputChange Output: {0} EventId: {1}", args.Number, args.EventId.ToString());
|
//Debug.Console(2, this, "DMOutputChange Output: {0} EventId: {1}", args.Number, args.EventId.ToString());
|
||||||
|
|
||||||
var output = args.Number;
|
var output = args.Number;
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue