I have a Keybow MINI hooked up to a Raspberry Pi Zero W, and I’m using Python to respond to events. I have one button that kicks off playing a song on a passive buzzer, and I’m wondering if there’s a way to have a button press stop the song before it completes.

  • @Vector@lemmy.world
    link
    fedilink
    English
    82 months ago

    It should be possible, but the answer is going to depend on your implementation, what libraries you are using, and so on.

    For example, if the play sound action is synchronous, then maybe you could start it up in another thread, and interrupt that thread if you want to cancel the sound.

    If it’s asynchronous, maybe you need to retain a reference to the sound object and then invoke a stop() call when the other button is pressed.

    • @TheButtonJustSpins@infosec.pubOP
      link
      fedilink
      English
      1
      edit-2
      1 month ago

      Okay, I’ve got it offloaded to a different process and I can cancel that process now. However, is there anything I need to do to let it access GPIO? It looks like it’s working but nothing is coming out of the passive buzzer when I’m playing it off the other process.

      EDIT: I think I got it with threading. Thanks!