mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-04-12 20:17:03 +00:00
Added properties and feedbacks debugging; Working on buffering socket on Sammy
This commit is contained in:
parent
a3d499accf
commit
8586796a6d
18 changed files with 253 additions and 125 deletions
|
|
@ -103,6 +103,11 @@ namespace PepperDash.Essentials.Core
|
|||
LinkedComplementInputSigs.Remove(sig);
|
||||
}
|
||||
|
||||
public override string ToString()
|
||||
{
|
||||
return BoolValue.ToString();
|
||||
}
|
||||
|
||||
void UpdateSig(BoolInputSig sig)
|
||||
{
|
||||
sig.BoolValue = _BoolValue;
|
||||
|
|
@ -160,6 +165,11 @@ namespace PepperDash.Essentials.Core
|
|||
LinkedInputSigs.Remove(sig);
|
||||
}
|
||||
|
||||
public override string ToString()
|
||||
{
|
||||
return IntValue.ToString();
|
||||
}
|
||||
|
||||
void UpdateSig(UShortInputSig sig)
|
||||
{
|
||||
sig.UShortValue = UShortValue;
|
||||
|
|
@ -212,6 +222,11 @@ namespace PepperDash.Essentials.Core
|
|||
LinkedInputSigs.Remove(sig);
|
||||
}
|
||||
|
||||
public override string ToString()
|
||||
{
|
||||
return StringValue;
|
||||
}
|
||||
|
||||
void UpdateSig(StringInputSig sig)
|
||||
{
|
||||
sig.StringValue = _StringValue;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue