KKjelstad
KKjelstad
It looks like there is an issue with the "getBoardTemperature" function. It reads two bytes from the LSM303, but it returns only 1 byte. ``` /** * Returns the board...
@keestux I have done some testing by reading out the H and L bytes. First I cooled down the board. (readings approx. every minute) | H | L | Decimal...
@alextsam @keestux I have replaced the return statement with: `return 20 + ((temp + 4) / 8);` Not sure how much heat the device generates it self, but when idling...
@mrjdomingus Adding 4 just ensures that the value is rounded to the correct value when operating with integers. One degree has eight steps so it means the value 0 to...