Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/Util/CSoundClient.py
diff options
context:
space:
mode:
authorOli <olpc@localhost.localdomain>2007-02-17 02:14:31 (GMT)
committer Oli <olpc@localhost.localdomain>2007-02-17 02:14:31 (GMT)
commit4971d4a399677fd7b87c5c4c5a02569ea8f66732 (patch)
tree41c4cc3b8747d29ddf577399dcb6d130df782615 /Util/CSoundClient.py
parentfb0b483ba238e15f1f97d2aa3317ccbe886d8b26 (diff)
trackpad vibrato/tremolo in miniTamTam
Diffstat (limited to 'Util/CSoundClient.py')
-rw-r--r--Util/CSoundClient.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/Util/CSoundClient.py b/Util/CSoundClient.py
index 0862282..5b3802c 100644
--- a/Util/CSoundClient.py
+++ b/Util/CSoundClient.py
@@ -171,6 +171,14 @@ class CSoundClientPlugin( CSoundClientBase ):
if self.on:
sc_setMasterVolume(volume)
+ def setTrackpadX( self, value ):
+ trackpadX = value
+ sc_setTrackpadX(trackpadX)
+
+ def setTrackpadY( self, value ):
+ trackpadY = value
+ sc_setTrackpadY(trackpadY)
+
def micRecording( self, table ):
sc_inputMessage( Config.CSOUND_MIC_RECORD % table )