-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvolume.py
executable file
·57 lines (39 loc) · 1.36 KB
/
volume.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
#!/bin/env python3
import RPi.GPIO as GPIO
import time
from datetime import datetime
import alsaaudio as audio
DEBUG = False
TIME_INTERVAL = 0.1
VOLUME_STEP = 1
GPIO.setmode(GPIO.BOARD)
# Setup the GPIO pin numbers
VOL_UP = 12
VOL_DOWN = 16
switches = [VOL_UP, VOL_DOWN]
for switch in switches:
DEBUG and print(switch)
GPIO.setup(switch, GPIO.IN, pull_up_down=GPIO.PUD_UP)
# initialize the audio mixer controls
scanCards = audio.cards()
DEBUG and print(f"cards: {scanCards}")
for card in scanCards:
scanMixers = audio.mixers(scanCards.index(card))
DEBUG and print("mixers:", scanMixers)
mixer = audio.Mixer("HDMI", cardindex=0)
while(True):
now = datetime.now()
current_time = now.strftime("%H:%M:%S")
vol_down_state = GPIO.input(VOL_DOWN)
vol_up_state = GPIO.input(VOL_UP)
if not vol_down_state:
current_volume = mixer.getvolume()
DEBUG and print(f"{current_time}: Vol: {current_volume} stepping DOWN by {VOLUME_STEP}")
new_volume = int(current_volume[0]) - VOLUME_STEP
mixer.setvolume(max([0, new_volume]))
if not vol_up_state:
current_volume = mixer.getvolume()
DEBUG and print(f"{current_time}: Vol: {current_volume} stepping UP by {VOLUME_STEP}")
new_volume = int(current_volume[0]) + VOLUME_STEP
mixer.setvolume(min([100, new_volume]))
time.sleep(TIME_INTERVAL)