feat(SigCommands): #759 Adds SigCommand concept for each data type

This commit is contained in:
Neil Dorin
2021-07-26 17:57:35 -06:00
parent 10f5516a5a
commit 83525b721b
7 changed files with 321 additions and 12 deletions

View File

@@ -62,6 +62,7 @@ namespace PepperDash.Essentials.Core
ValueFunc = valueFunc;
}
public override void FireUpdate()
{
bool newValue = InTestMode ? TestValue : ValueFunc.Invoke();