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
f539b655
Commit
f539b655
authored
6 years ago
by
Jess Ward
Browse files
Options
Downloads
Patches
Plain Diff
import from snapcast and set variables
parent
ab96ad46
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
+24
-12
24 additions, 12 deletions
darkmute.py
with
24 additions
and
12 deletions
darkmute.py
+
24
−
12
View file @
f539b655
import
RPi.GPIO
as
GPIO
import
time
import
snapcast.control
from
snapcast
import
get_snapcast_client
from
snapcast
import
add_server
SENSOR_PIN
=
7
MUTE_BRIGHTNESS
=
0.1
def
dark_mute
():
'''
Runs measure_brightness and prints output
'''
server
=
snapcast
.
control
.
Snapserver
(
add_server
(),
snapcast
.
control
.
CONTROL_PORT
)
client
=
get_snapcast_client
(
server
)
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
else
:
client
.
muted
=
False
except
KeyboardInterrupt
:
pass
finally
:
GPIO
.
cleanup
()
def
measure_brightness
(
pin_to_circuit
):
...
...
@@ -18,18 +41,7 @@ def measure_brightness(pin_to_circuit):
while
(
GPIO
.
input
(
pin_to_circuit
)
==
GPIO
.
LOW
):
charge_time
+=
1
return
1
/
charge_time
def
dark_mute
():
GPIO
.
setmode
(
GPIO
.
BOARD
)
try
:
while
True
:
print
(
measure_brightness
(
SENSOR_PIN
))
except
KeyboardInterrupt
:
pass
finally
:
GPIO
.
cleanup
()
return
1000
/
charge_time
if
__name__
==
'
__main__
'
:
...
...
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