buttons.py 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. import RPi.GPIO as GPIO
  2. import time
  3. from lib.mqtt import create_client, control_player, create_config
  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. print("Button 1 pressed!")
  15. control_player(client, "PLAY")
  16. def button_callback_2(channel):
  17. print("Button 2 pressed!")
  18. control_player(client, "PAUSE")
  19. def button_callback_3(channel):
  20. print("Button 3 pressed!")
  21. # Add event detection for each button press
  22. GPIO.add_event_detect(BUTTON_PINS[0], GPIO.FALLING, callback=button_callback_1, bouncetime=200)
  23. GPIO.add_event_detect(BUTTON_PINS[1], GPIO.FALLING, callback=button_callback_2, bouncetime=200)
  24. GPIO.add_event_detect(BUTTON_PINS[2], GPIO.FALLING, callback=button_callback_3, bouncetime=200)
  25. try:
  26. # Keep the script running to detect button presses
  27. while True:
  28. time.sleep(1) # Sleep to reduce CPU usage
  29. except KeyboardInterrupt:
  30. pass
  31. finally:
  32. GPIO.cleanup() # Clean up GPIO on exit