Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/data/sound/sequence
diff options
context:
space:
mode:
Diffstat (limited to 'data/sound/sequence')
-rw-r--r--data/sound/sequence6
1 files changed, 3 insertions, 3 deletions
diff --git a/data/sound/sequence b/data/sound/sequence
index f870094..683ea59 100644
--- a/data/sound/sequence
+++ b/data/sound/sequence
@@ -4,9 +4,9 @@ sys.path.append('/usr/share/activities/Pippy.activity/sound')
from snd import *
for i in range(25):
pitch = random.randint(500,2000)
- amp = 5000
- dur = 0.1
+ amplitude = 5000
+ duration = 0.1
starttime = i * 0.1
- playSine(pitch, amp, dur, starttime)
+ playSine(pitch, amplitude, duration, starttime)
audioOut()