Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/data/en/sound/sequence
diff options
context:
space:
mode:
Diffstat (limited to 'data/en/sound/sequence')
-rw-r--r--data/en/sound/sequence11
1 files changed, 11 insertions, 0 deletions
diff --git a/data/en/sound/sequence b/data/en/sound/sequence
new file mode 100644
index 0000000..06eac36
--- /dev/null
+++ b/data/en/sound/sequence
@@ -0,0 +1,11 @@
+import pippy
+import random
+
+for i in range(25):
+ pitch = random.randint(500, 2000)
+ amplitude = 5000
+ duration = 0.1
+ start_time = i * 0.1
+ pippy.sound.playSine(pitch, amplitude, duration, start_time)
+
+pippy.sound.audioOut()