Skip to content

Commit 0f8c432

Browse files
authored
Merge pull request #63 from FoamyGuy/higher_tones
use higher tones in docstring examples
2 parents d8b97ba + 4135c79 commit 0f8c432

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

adafruit_clue.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -747,9 +747,9 @@ def start_tone(self, frequency: int):
747747
748748
while True:
749749
if clue.button_a:
750-
clue.start_tone(523)
750+
clue.start_tone(1600)
751751
elif clue.button_b:
752-
clue.start_tone(587)
752+
clue.start_tone(2000)
753753
else:
754754
clue.stop_tone()
755755
"""
@@ -779,9 +779,9 @@ def stop_tone(self):
779779
780780
while True:
781781
if clue.button_a:
782-
clue.start_tone(523)
782+
clue.start_tone(1600)
783783
elif clue.button_b:
784-
clue.start_tone(587)
784+
clue.start_tone(2000)
785785
else:
786786
clue.stop_tone()
787787
"""

0 commit comments

Comments
 (0)