Initial commit
This commit is contained in:
commit
778fe31c38
35 changed files with 1849 additions and 0 deletions
11
stage/level1.py
Normal file
11
stage/level1.py
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
"""
|
||||
Niveau 1
|
||||
Jouer un son
|
||||
"""
|
||||
|
||||
import synth
|
||||
|
||||
encoder = synth.Encoder()
|
||||
for t in range(64000):
|
||||
#encoder.write(math.sin(t/16000*400))
|
||||
encoder.write(t/16000*400%1)
|
||||
Loading…
Add table
Add a link
Reference in a new issue