Thanks for sharing this code.
At https://github.com/ControlEverythingCommunity/MS5803-05BA/blob/master/Arduino/MS5803_05BA.ino#L135 this comparison exists:
if(temp < - 1500)
temp is an unsigned integer so it can never be <1500.
What is this comparison supposed to do?
Thanks for sharing this code.
At https://github.com/ControlEverythingCommunity/MS5803-05BA/blob/master/Arduino/MS5803_05BA.ino#L135 this comparison exists:
if(temp < - 1500)temp is an unsigned integer so it can never be <1500.
What is this comparison supposed to do?