mirror of
https://github.com/PepperDash/PepperDashCore.git
synced 2026-02-16 05:04:48 +00:00
Merged in feature/pdc-34 (pull request #37)
Feature/pdc 34 Approved-by: Neil Dorin <ndorin@pepperdash.com>
This commit is contained in:
@@ -137,20 +137,19 @@ namespace PepperDash.Core.JsonToSimpl
|
|||||||
// OnBoolChange(false, index, JsonToSimplConstants.BoolValueChange);
|
// OnBoolChange(false, index, JsonToSimplConstants.BoolValueChange);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Processes the path to a ushort, converting to ushort if able, firing off UshrtChange event
|
// Processes the path to a ushort, converting to ushort if able, twos complement if necessary, firing off UshrtChange event
|
||||||
void ProcessUshortPath(ushort index)
|
void ProcessUshortPath(ushort index) {
|
||||||
{
|
string response;
|
||||||
string response;
|
if (Process(UshortPaths[index], out response)) {
|
||||||
if (Process(UshortPaths[index], out response))
|
ushort val;
|
||||||
{
|
try { val = Convert.ToInt32(response) < 0 ? (ushort)(Convert.ToInt16(response) + 65536) : Convert.ToUInt16(response); }
|
||||||
ushort val;
|
catch { val = 0; }
|
||||||
try { val = Convert.ToUInt16(response); }
|
|
||||||
catch { val = 0; }
|
OnUShortChange(val, index, JsonToSimplConstants.UshortValueChange);
|
||||||
OnUShortChange(val, index, JsonToSimplConstants.UshortValueChange);
|
}
|
||||||
}
|
else { }
|
||||||
else { }
|
// OnUShortChange(0, index, JsonToSimplConstants.UshortValueChange);
|
||||||
// OnUShortChange(0, index, JsonToSimplConstants.UshortValueChange);
|
}
|
||||||
}
|
|
||||||
|
|
||||||
// Processes the path to a string property and fires of a StringChange event.
|
// Processes the path to a string property and fires of a StringChange event.
|
||||||
void ProcessStringPath(ushort index)
|
void ProcessStringPath(ushort index)
|
||||||
|
|||||||
Reference in New Issue
Block a user