buttons.py 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. import RPi.GPIO as GPIO
  2. import time
  3. from lib.mqtt import create_client, control_player, create_config, check_current_status
  4. client = create_client()
  5. create_config(client)
  6. # Set up GPIO pins for each button
  7. BUTTON_PINS = [17, 18, 27] # Replace with your GPIO pin numbers
  8. GPIO.setmode(GPIO.BCM) # Use BCM numbering
  9. # Set up each button pin as input with internal pull-up resistors
  10. for pin in BUTTON_PINS:
  11. GPIO.setup(pin, GPIO.IN, pull_up_down=GPIO.PUD_UP)
  12. # Callback functions to handle button presses
  13. def button_callback_1(channel):
  14. client = create_client()
  15. if check_current_status(client) == "PLAY":
  16. print("Button 1 pressed! Pausing playback.")
  17. control_player(client, "PAUSE")
  18. else:
  19. print("Button 1 pressed! Playing.")
  20. control_player(client, "PLAY")
  21. def button_callback_2(channel):
  22. print("Button 2 pressed!")
  23. client = create_client()
  24. control_player(client, "PAUSE")
  25. def button_callback_3(channel):
  26. print("Button 3 pressed!")
  27. client = create_client()
  28. # Add event detection for each button press
  29. GPIO.add_event_detect(BUTTON_PINS[0], GPIO.FALLING, callback=button_callback_1, bouncetime=200)
  30. GPIO.add_event_detect(BUTTON_PINS[1], GPIO.FALLING, callback=button_callback_2, bouncetime=200)
  31. GPIO.add_event_detect(BUTTON_PINS[2], GPIO.FALLING, callback=button_callback_3, bouncetime=200)
  32. try:
  33. # Keep the script running to detect button presses
  34. while True:
  35. time.sleep(1) # Sleep to reduce CPU usage
  36. except KeyboardInterrupt:
  37. pass
  38. finally:
  39. GPIO.cleanup() # Clean up GPIO on exit