fixed import issue

This commit is contained in:
Stefan Kögl 2014-03-15 21:33:50 +01:00
parent 495fa03401
commit 63e428ce4d
1 changed files with 2 additions and 2 deletions

View File

@ -20,7 +20,7 @@
from __future__ import absolute_import
from sensors2osc.common import *
from sensors2osc import common
atexit.register(close)
@ -31,7 +31,7 @@ def main():
while 1:
try:
t = ord(serial_sock.read(1))
t = ord(common.serial_sock.read(1))
print "got value", t
osc_message = OSCMessage("/%s/ekg" % actor)
osc_message.appendTypedArg(t, "i")