PageDriver for VtcHuddle AV funcs; PageDriver for Spark

This commit is contained in:
Heath Volmer
2017-09-06 18:07:37 -06:00
parent 9aad840a78
commit cb5dcc5088
14 changed files with 474 additions and 89 deletions

View File

@@ -154,11 +154,19 @@ namespace PepperDash.Essentials.Core
}
/// <summary>
/// Helper method to set the value of a bool Sig on tri list
/// Helper method to set the value of a bool Sig on TriList
/// </summary>
public static void SetBool(this BasicTriList tl, uint sigNum, bool value)
{
tl.BooleanInput[sigNum].BoolValue = value;
}
}
/// <summary>
/// Helper method to set the value of a string Sig on TriList
/// </summary>
public static void SetString(this BasicTriList tl, uint sigNum, string value)
{
tl.StringInput[sigNum].StringValue = value;
}
}
}