Skip to content

Commit 4ba91eb

Browse files
authored
Merge pull request #244 from tue-robotics/biestheuvel_move_obstacles
Biestheuvel move obstacles
2 parents dc233d7 + 4f80153 commit 4ba91eb

File tree

3 files changed

+16
-2
lines changed

3 files changed

+16
-2
lines changed

dashboard/get-releases

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/env python
1+
#!/usr/bin/env python3
22

33
import sys
44
import urllib2
@@ -18,4 +18,4 @@ for r in rs:
1818
except ValueError:
1919
continue
2020
url = new['browser_download_url']
21-
print r['tag_name'], url
21+
print(r['tag_name'], url)
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
- type: ros
2+
source:
3+
type: git
4+
url: https://github.com/tue-robotics/tue_robocup.git
5+
sub-dir: challenge_move_obstacles

tue-common/rsettings_file

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ export ROBOT_ENV=robotics_testlabs
99
#export ROBOT_ENV=rwc2017
1010
#export ROBOT_ENV=rwc2018
1111
#export ROBOT_ENV=rwc2019
12+
#export ROBOT_ENV=biestheuvel
1213

1314
# Set Robot initial pose based on environment
1415

@@ -66,4 +67,12 @@ elif [ $ROBOT_ENV == rwc2018 ]; then
6667
export ROBOT_INIT_X=-11.0
6768
export ROBOT_INIT_Y=8.5
6869
export ROBOT_INIT_PHI=0.0
70+
71+
elif [ $ROBOT_ENV == biestheuvel ]; then
72+
73+
# Robot initial pose
74+
export ROBOT_INIT_X=3
75+
export ROBOT_INIT_Y=-1
76+
export ROBOT_INIT_PHI=1.57
77+
6978
fi

0 commit comments

Comments
 (0)