Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • matthewjosephcordova
    Participant
    Post count: 22

    I’m working on a console and having difficulty shutting down emulators using a button on the GPIO. I’ve been able to use a kill -TERM command that works well for most emulators. I’d probably do better simulating an escape key press. Would someone please help. What code is needed exactly to simulate that key press?

    I’m currently using
    ‘os.system(‘kill -TERM %s’ %pid)’
    With good success but it doesn’t work with mame4all.

    sselph
    Participant
    Post count: 170

    Bear in mind I haven’t actually tried this but found this which might work:
    https://github.com/tuomasjjrasanen/python-uinput

    One of the examples is generating keyboard clicks

    matthewjosephcordova
    Participant
    Post count: 22

    Thanks for the reply, but I did end up figuring it out. I’ll post a guide this weekend. Basically some emulators don’t accept a sigterm and some don’t accept a uinput. Don’t ask me why…

    I did however manage to write some code that exits all my emulators to ES gracefully without using sigkill and using a pin on the GPIO and a single external button and without using snesdev.

    matthewjosephcordova
    Participant
    Post count: 22

    Please see the following link to resolve the problem,

Viewing 4 posts - 1 through 4 (of 4 total)
  • The forum ‘Everything else related to the RetroPie Project’ is closed to new topics and replies.