]> defiant.homedns.org Git - ros_wild_thumper.git/blobdiff - scripts/wifistrength.py
www: properly set image hostname
[ros_wild_thumper.git] / scripts / wifistrength.py
index 496c7b25ca5952392eba3aa485af2e81bbc29cfd..d8a989bbf4cae5eab91e7ea4217bbb3dea3552ef 100755 (executable)
@@ -1,6 +1,7 @@
 #!/usr/bin/env python
 # -*- coding: iso-8859-15 -*-
 
+import sys
 import os
 import re
 import rospy
@@ -21,5 +22,6 @@ while not rospy.is_shutdown():
                if match_lq is not None:
                        lq = float(match_lq.group(1)) / float(match_lq.group(2))
                        pos = tfBuffer.lookup_transform("map", 'base_link', rospy.Time(0), rospy.Duration(1.0))
-                       print "{'x':%.2f, 'y':%.2f, 'link':%.2f}," % (pos.transform.translation.x, pos.transform.translation.y, lq)
+                       print '{"x":%.2f, "y":%.2f, "link":%.2f},' % (pos.transform.translation.x, pos.transform.translation.y, lq)
+                       sys.stdout.flush()
                        sleep(0.5)