Skip to content

Commit

Permalink
Merge pull request #273 from jbanana/EscapeRoom_1.1
Browse files Browse the repository at this point in the history
Fixed bird song in EscapeRoom
  • Loading branch information
TinyCircuits authored Dec 30, 2024
2 parents eb322f9 + c9c6e43 commit 5fd94ca
Showing 1 changed file with 5 additions and 8 deletions.
13 changes: 5 additions & 8 deletions EscapeRoom/EscapeRoom.py
Original file line number Diff line number Diff line change
Expand Up @@ -269,14 +269,11 @@ def overlay():
drawDup( 0, 4, 0, 5 )

def playCuckoo():
audio.play( 523, 500 ) # 12|16|
audio.play( 392, 750 ) # 7|16| .
sleep( 0.5 ) # 7|16| r
audio.play( 523, 500 ) # 12|16|
audio.play( 392, 750 ) # 7|16| .
sleep( 0.5 ) # 7|16| r
audio.play( 523, 500 ) # 12|16|
audio.play( 392, 750 ) # 7|16| .
for _ in range( 3 ):
audio.playBlocking( 587, 300 )
sleep( 0.1 )
audio.playBlocking( 392, 250 )
sleep( 0.6 )

def showText( line1, line2 = None, line3 = None ):
d.fill( 1 )
Expand Down

0 comments on commit 5fd94ca

Please sign in to comment.