voice_system_start 333 B

1234567891011121314
  1. #!/bin/bash
  2. # Copyright: 2016-2018 ROS小课堂 www.corvin.cn
  3. # Author: corvin
  4. # Description: when poweron auto launch voice system node.
  5. # History:
  6. # 20181129: initial this bash file.
  7. source /opt/ros/kinetic/setup.bash
  8. source /home/corvin/ros_voice_system/devel/setup.bash
  9. roslaunch voice_bringup voice_bringup.launch
  10. exit 0