Repair and add SignalR

This commit is contained in:
Jan Beníček 2024-01-16 12:52:40 +01:00
parent d2f3cbc783
commit 7534cb62f9

View file

@ -41,6 +41,11 @@ namespace Libs_SequentMicrosystems
throw new IOException($"Fail to communicate with the RTD card with message: \"{e.Message}\""); throw new IOException($"Fail to communicate with the RTD card with message: \"{e.Message}\"");
} }
if (val < 0)
{
val = 0;
}
return val; return val;
} }