Trying to read the compass as follows. Why does this code work (with a sleep of 0.01) from sense_hat import * from time import sleep sense = SenseHat() sense.clear() sense.set_imu_config(True, True, True) while True: print(sense.get_orientation()) sleep(0.01) The compass updates quickly and swings t...