Hey, i tried the SenseHat Emulator. Not the Webbased one, i mean the gtk appliation you can download. I wrote this code : from sense_emu import SenseHat sense=SenseHat() from time import sleep while True: yaw,roll,pitch = sense.get_orientation().values() print(roll) sleep(3) The code works, but unde...