Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
Dark-Mute
Manage
Activity
Members
Labels
Plan
Issues
1
Issue boards
Milestones
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jess Ward
Dark-Mute
Commits
a61eadd7
Commit
a61eadd7
authored
6 years ago
by
Jess Ward
Browse files
Options
Downloads
Patches
Plain Diff
Final changes:
Added async loop to fix issue where it hung after muting Final clean-up and comments
parent
b782759a
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
darkmute.py
+14
-12
14 additions, 12 deletions
darkmute.py
with
14 additions
and
12 deletions
darkmute.py
+
14
−
12
View file @
a61eadd7
import
RPi.GPIO
as
GPIO
import
asyncio
import
time
import
snapcast.control
from
snap
cast
import
get_snapcast_client
from
snapcast
import
add_server
import
RPi.GPIO
as
GPIO
from
snap
import
get_snapcast_client
SENSOR_PIN
=
7
MUTE_BRIGHTNESS
=
0.1
def
dark_mute
():
'''
Runs measure_
brigh
t
ness
and prints output
'''
server
=
snapcast
.
control
.
Snapserver
(
add_server
(),
snapcast
.
control
.
CONTROL_PORT
)
client
=
get_snapcast_client
(
server
)
'''
Uses
brighness
level to mute or unmute device
'''
# Snapcast library only supports asynchronous so need to wrap in async loop
loop
=
asyncio
.
new_event_loop
(
)
client
=
get_snapcast_client
(
loop
)
GPIO
.
setmode
(
GPIO
.
BOARD
)
try
:
while
True
:
# TODO: track current state, don't send constant updates
brightness
=
measure_brightness
(
SENSOR_PIN
)
if
brightness
<
MUTE_BRIGHTNESS
:
client
.
muted
=
True
# client.muted did not work so need client.set_muted
# loop used here and also passed into snap.py to get server
loop
.
run_until_complete
(
client
.
set_muted
(
True
))
else
:
client
.
muted
=
False
loop
.
run_until_complete
(
client
.
set_
muted
(
False
))
except
KeyboardInterrupt
:
pass
finally
:
GPIO
.
cleanup
()
GPIO
.
cleanup
()
loop
.
close
()
def
measure_brightness
(
pin_to_circuit
):
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment