Écran Python Rotation
pip install rotate-screen
Clumsy Corncrake
pip install rotate-screen
import time
import rotatescreen
screen = rotatescreen.get_primary_display()
start = screen.current_orientation
for i in range(1, 10):
a = abs((start - i*90) % 360)
screen.rotate_to(a)
time.sleep(1)