I know that the sensors need calibrating and I'm wondering if
viewtopic.php?f=104&t=109064&hilit=calibration
is the method to still use?


Code: Select all
#!/usr/bin/python
import time
from sense_hat import SenseHat
sense = SenseHat()
while True:
compass = sense.get_compass()
print "compass", compass
print
time.sleep(0.1)I've just checked and there is no RTIMULib.ini in my home/pi folder - just the one in /etcThe sense-hat python library is aware of it and will copy it to the user's home directory if it's not there already



