Compare commits

...

2 commits

Author SHA1 Message Date
7534cb62f9 Repair and add SignalR 2024-01-16 12:52:40 +01:00
Jan Beníček
d2f3cbc783 Aktualizovat README.md 2023-11-23 15:40:00 +00:00
2 changed files with 9 additions and 1 deletions

View file

@ -1 +1,4 @@
# Libs_SequentMicrosystems # Libs_SequentMicrosystems
Supported Boards:
- RTD Data Acquisition 8-Layer Stackable HAT for Raspberry Pi (https://sequentmicrosystems.com/products/rtd-data-acquisition-card-for-rpi)

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;
} }