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
ec6b3023
Commit
ec6b3023
authored
6 years ago
by
Jess Ward
Browse files
Options
Downloads
Patches
Plain Diff
Dark Mute for bathroom pi
parents
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
README.md
+0
-0
0 additions, 0 deletions
README.md
darkmute.py
+31
-0
31 additions, 0 deletions
darkmute.py
with
31 additions
and
0 deletions
README.md
0 → 100644
+
0
−
0
View file @
ec6b3023
This diff is collapsed.
Click to expand it.
darkmute.py
0 → 100644
+
31
−
0
View file @
ec6b3023
#!/usr/local/bin/python
import
RPi.GPIO
as
GPIO
import
time
GPIO
.
setmode
(
GPIO
.
BOARD
)
pin_to_circuit
=
7
def
rc_time
(
pin_to_circuit
):
count
=
0
GPIO
.
setup
(
pin_to_circuit
,
GPIO
.
OUT
)
GPIO
.
output
(
pin_to_circuit
,
GPIO
.
LOW
)
time
.
sleep
(
0.1
)
GPIO
.
setup
(
pin_to_circuit
,
GPIO
.
IN
)
while
(
GPIO
.
input
(
pin_to_circuit
)
==
GPIO
.
LOW
):
count
+=
1
return
count
try
:
while
True
:
print
rc_time
(
pin_to_circuit
)
except
KeyboardInterrupt
:
pass
finally
:
GPIO
.
cleanup
()
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