buttons.py 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. import RPi.GPIO as GPIO
  2. import time
  3. from lib.mqtt import create_client, control_player, create_config, check_current_status, check_current_disc
  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, "SKIP")
  25. control_player(client, "PLAY")
  26. # Handling button 3 with a hold check
  27. def button_callback_3(channel):
  28. start_time = time.time()
  29. client = create_client()
  30. # Wait until the button is released or held for more than 3 seconds
  31. while GPIO.input(BUTTON_PINS[2]) == GPIO.LOW: # Button is pressed (active low)
  32. if time.time() - start_time >= 3: # Check if 3 seconds have passed
  33. print("Button 3 held for 3 seconds! Sending RADIO2.")
  34. disc_data = check_current_disc(client)
  35. control_player(client, f"{disc_data[0]}:{disc_data[1]}:{disc_data[2]}:RESET")
  36. control_player(client, f"{disc_data[0]}:{disc_data[1]}:{disc_data[2]}:{disc_data[3]}")
  37. return # Exit after sending RADIO2
  38. # If button was not held for 3 seconds, send RADIO
  39. print("Button 3 pressed briefly! Sending RADIO.")
  40. control_player(client, "RADIO")
  41. # Add event detection for each button press
  42. GPIO.add_event_detect(BUTTON_PINS[0], GPIO.FALLING, callback=button_callback_1, bouncetime=200)
  43. GPIO.add_event_detect(BUTTON_PINS[1], GPIO.FALLING, callback=button_callback_2, bouncetime=200)
  44. GPIO.add_event_detect(BUTTON_PINS[2], GPIO.FALLING, callback=button_callback_3, bouncetime=200)
  45. try:
  46. # Keep the script running to detect button presses
  47. while True:
  48. time.sleep(1) # Sleep to reduce CPU usage
  49. except KeyboardInterrupt:
  50. pass
  51. finally:
  52. GPIO.cleanup() # Clean up GPIO on exit