Browse Source

allow update_meshes.py to work with both param formats

feature/RE1.5
Aaron Edsinger 2 years ago
parent
commit
01b639a938
1 changed files with 4 additions and 1 deletions
  1. +4
    -1
      stretch_description/meshes/update_meshes.py

+ 4
- 1
stretch_description/meshes/update_meshes.py View File

@ -2,7 +2,10 @@
import os import os
import stretch_body.hello_utils as hu import stretch_body.hello_utils as hu
import stretch_body.robot_params import stretch_body.robot_params
batch_name = hu.read_fleet_yaml('stretch_configuration_params.yaml')['robot']['batch_name'].lower()
if os.path.exists(hu.get_fleet_directory()+'stretch_configuration_params.yaml'):
batch_name = hu.read_fleet_yaml('stretch_configuration_params.yaml')['robot']['batch_name'].lower()
else:
batch_name = hu.read_fleet_yaml('stretch_re1_factory_params.yaml')['robot']['batch_name'].lower()
cmd='cp ~/catkin_ws/src/stretch_ros/stretch_description/meshes/'+batch_name+'/*.STL ~/catkin_ws/src/stretch_ros/stretch_description/meshes' cmd='cp ~/catkin_ws/src/stretch_ros/stretch_description/meshes/'+batch_name+'/*.STL ~/catkin_ws/src/stretch_ros/stretch_description/meshes'
print("Copying in mesh files from batch:"+batch_name) print("Copying in mesh files from batch:"+batch_name)
print(cmd) print(cmd)

Loading…
Cancel
Save