PROJECT=FooKit
mkdir $PROJECT
cd $PROJECT
swift package init --type library
swift package generate-xcodeproj
This file contains hidden or 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
<launch> | |
<arg name="map_frame" default="map" /> | |
<!-- TODO: include machine definitions --> | |
<!-- TODO: these params should be moved to aero_bringup? --> | |
<param name="robot/database" value="jsk_robot_lifelog"/> | |
<param name="robot/type" value="aero"/> | |
<param name="robot/name" value="almond"/> |
This file contains hidden or 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
Full Name: /Motors/EtherCAT Device (l_wrist_l_motor) | |
Component: EtherCAT Device (l_wrist_l_motor) | |
Hardware ID: 68-05005-01779 | |
Level: OK | |
Message: OK | |
Configuration: good | |
Name: l_wrist_l_motor | |
Position: 22 | |
Product code: WG05 (6805005) Firmware Revision 1.22, PCB Revision F.02 |
This file contains hidden or 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
#!/usr/bin/env python | |
# -*- coding: utf-8 -*- | |
# Author: furushchev <[email protected]> | |
import matplotlib | |
import pandas as pd | |
import pylab | |
import matplotlib.pyplot as plt | |
import sys | |
import os |
This file contains hidden or 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
#!/usr/bin/env python | |
# -*- coding: utf-8 -*- | |
# Author: furushchev <[email protected]> | |
import os | |
import rosgraph | |
import rospy | |
import signal | |
import subprocess |
This file contains hidden or 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
- git: | |
local-name: PR2/pr2_controllers | |
uri: https://github.com/PR2/pr2_controllers | |
version: indigo-devel | |
- git: | |
local-name: PR2/pr2_gripper_sensor | |
uri: https://github.com/pr2/pr2_gripper_sensor | |
version: hydro-devel | |
- git: | |
local-name: PR2/pr2_mechanism |
This file contains hidden or 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
<launch> | |
<arg name="ROBOT" default="$(env ROBOT)" /> | |
<arg name="map_frame" default="eng2" /> | |
<arg name="machine" default="localhost" /> | |
<arg name="output" default="screen" /> | |
<arg name="respawn" default="true" /> | |
<include file="$(find pr2_machine)/$(arg ROBOT).machine" /> | |
<machine name="localhost" address="localhost" /> |
This file contains hidden or 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
<launch> | |
<node name="pub1" pkg="rostopic" type="rostopic" | |
args="pub base geometry_msgs/PoseStamped 'header: {stamp: now}' -r 1 -s" /> | |
</launch> | |