This repository has been archived by the owner on Jul 2, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed imports in runner.py and updated package.xml
- Loading branch information
Showing
5 changed files
with
4 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
Empty file.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,12 @@ | ||
#!/usr/bin/env python | ||
import time | ||
import sys | ||
import rospy | ||
print "[Robotics Indoor SDK] initializing ROS node.." | ||
rospy.init_node('positioning', anonymous=True) | ||
print "[Robotics Indoor SDK] ROS node started, initializing positioning system.." | ||
# sys.path.append('lib/armv7l') | ||
sys.path.append('lib/x86') | ||
import robotics_indoor_sdk | ||
|
||
#import lib.x86.robotics_indoor_sdk | ||
import lib.armv7l.robotics_indoor_sdk | ||
|
||
while True: | ||
time.sleep(0.2) |