How can I programatically simlulate Exit key being pressed on the remote? I found code to simulate key presses, including Menu key (code below), but I couldn't find corresponding keycode for the Exit key.
import enigma FLAG_MAKE = 0 FLAG_BREAK = 1 TYPE_STANDARD = "dreambox remote control (native)" #press the key with the desired flag eam.keyPressed(TYPE_STANDARD, 139, FLAG_MAKE) #menu #Release the key eam.keyPressed(TYPE_STANDARD, 139, FLAG_BREAK) #menu