This website works better with JavaScript.
Home
Explore
Help
Sign In
pete
/
milchlode
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
Tidy up
master
Pete Shadbolt
10 years ago
parent
3d7fb091d4
commit
dcdab076f1
6 changed files
with
11 additions
and
7 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+10
-0
interface.py
+0
-0
libs/__init__.py
+0
-0
libs/osc.py
+0
-1
libs/simpleosc.py
+0
-5
osctest.py
+1
-1
run.sh
+ 10
- 0
interface.py
View File
@@ -0,0 +1,10 @@
from libs.simpleosc import *
server = OSCServer (("127.0.0.1", 9000))
server.addDefaultHandlers()
initOSCClient(port=9000)
sendOSCMsg("/test", [.1])
closeOSC()
+ 0
- 0
libs/__init__.py
View File
OSC.py → libs/osc.py
View File
simpleOSC.py → libs/simpleosc.py
View File
@@ -47,7 +47,6 @@ def printing_handler(addr, tags, data, source):
print "---"
def initOSCClient(ip='127.0.0.1', port=9000) :
global basic_client
basic_client = OSCClient()
+ 0
- 5
osctest.py
View File
@@ -1,5 +0,0 @@
from simpleOSC import *
initOSCClient(port=9000)
sendOSCMsg("/test", [.1])
closeOSC()
+ 1
- 1
run.sh
View File
@@ -1,2 +1,2 @@
#!/bin/bash
./
chuck --bufsize64 chuck.ck
chuck --bufsize64 chuck.ck
Write
Preview
Loading…
Cancel
Save