Skip to content

Smaller issue in function getResultWith Range()

Compare
Choose a tag to compare
@wollewald wollewald released this 21 Sep 15:08
· 25 commits to master since this release
af5030b

result = map(rawResult, -32767, 32767, min, max);

changed to

result = map(rawResult, -32768, 32768, min, max);

since +/- range corresponds to +2^15/-2^15