With Audio and Screen Sharing Enabled
Add the i386 architecture to the list of dpkg architectures :
sudo dpkg --add-architecture i386
| ''' | |
| This script saves each topic in a bagfile as a csv. | |
| Accepts a filename as an optional argument. Operates on all bagfiles in current directory if no argument provided | |
| Usage1 (for one bag file): | |
| python bag2csv.py filename.bag | |
| Usage 2 (for all bag files in current directory): | |
| python bag2csv.py |
| #! /usr/bin/env python | |
| # remember to make this file executable (`chmod +x`) before trying to run it | |
| import rospy | |
| from std_srvs.srv import Trigger, TriggerResponse | |
| def trigger_response(request): | |
| return TriggerResponse( | |
| success=True, | |
| message="Hey, roger that; we'll be right there!" |