Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add 2 more beeps to the Buzzer #90

Merged
merged 28 commits into from
Jul 19, 2017
Merged
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
bb6f6f2
Add mashin step including the infusion temp from a beerxml import
swimIan Jul 15, 2017
6fd39a8
Update beerxml.py
swimIan Jul 16, 2017
b4ddc60
Update beerxml.py
swimIan Jul 16, 2017
f60658c
Update beerxml.py
swimIan Jul 16, 2017
85f0c6c
test
swimIan Jul 16, 2017
5d6e32a
test
swimIan Jul 16, 2017
eb715fa
Merge branch 'master' of https://github.com/swimIan/craftbeerpi3
swimIan Jul 16, 2017
ad02e24
Remove spaces
swimIan Jul 16, 2017
b9b3fee
Remove spaces
swimIan Jul 16, 2017
15d7906
Merge branch 'master' of https://github.com/swimIan/craftbeerpi3
swimIan Jul 16, 2017
ed9bbed
Testing
swimIan Jul 16, 2017
e750fbb
Update beerxml.py
swimIan Jul 16, 2017
58fd9a6
Update beerxml.py
swimIan Jul 16, 2017
a368213
Update beerxml.py
swimIan Jul 16, 2017
b40e82a
Merge branch 'master' of https://github.com/swimIan/craftbeerpi3
swimIan Jul 16, 2017
98fbcaf
Merge branch 'master' of https://github.com/swimIan/craftbeerpi3
swimIan Jul 16, 2017
be8506d
Merge branch 'master' of https://github.com/swimIan/craftbeerpi3
swimIan Jul 16, 2017
4d08b17
Merge branch 'master' of https://github.com/swimIan/craftbeerpi3
swimIan Jul 16, 2017
3c541e0
Merge branch 'master' of https://github.com/swimIan/craftbeerpi3
swimIan Jul 16, 2017
42e91de
Add two more beeps to the buzzer sound
swimIan Jul 16, 2017
eee5680
Merge branch 'master' of https://github.com/swimIan/craftbeerpi3
swimIan Jul 16, 2017
544e9bb
Merge branch 'master' of https://github.com/swimIan/craftbeerpi3
swimIan Jul 16, 2017
9c44d3f
Merge pull request #1 from Manuel83/master
swimIan Jul 16, 2017
518a139
Update __init__.py
swimIan Jul 16, 2017
d6d0237
Merge branch 'master' into patch-1
swimIan Jul 16, 2017
bbcf0a4
Merge pull request #2 from swimIan/patch-1
swimIan Jul 16, 2017
ea79399
Merge branch 'master' into patch-1
swimIan Jul 16, 2017
1184107
Merge branch 'master' of https://github.com/swimIan/craftbeerpi3
swimIan Jul 16, 2017
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion modules/buzzer/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

class Buzzer(object):

sound = ["H", 0.1, "L"]
sound = ["H", 0.1, "L", 0.1, "H", 0.1, "L", 0.1, "H", 0.1, "L"]
def __init__(self, gpio):
try:
cbpi.app.logger.info("INIT BUZZER NOW GPIO%s" % gpio)
Expand Down