--[[ ******************************** Licence: GPL (C)2013 rudi, Version: 1.0 ******************************** @title OSD Rotation ]] BLACK = 257 WHITE = 258 RED = 259 cls() sleep(500) print("Rotationstest") draw_string(50, 100, "Weiter mit Taste", RED, BLACK, 1, 2) wait_click(0) set_osd_rotation(1) print() print("Die Welt steht Kopf!") draw_string(50, 100, "Weiter mit Taste", RED, WHITE, 2, 2) wait_click(0) set_osd_rotation(0) print() print("Alles wieder OK!") draw_string(50, 100, "Ende mit Taste", RED, BLACK, 1, 2) wait_click(0)