Skip to content
This repository has been archived by the owner on Jan 24, 2019. It is now read-only.

Commit

Permalink
Added launcher and configuration file for WoodyBot
Browse files Browse the repository at this point in the history
  • Loading branch information
Myzhar committed Oct 21, 2014
1 parent e7d66b9 commit ae9a1e7
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 0 deletions.
25 changes: 25 additions & 0 deletions config/woodybot_params.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
robot_param: {
EncoderCprLeft: 400,
EncoderCprRight: 400,
EncoderPosition: 0,
Height_mm: 200,
Lenght_mm: 365,
MaxAmpereMotorLeft_mA: 1650,
MaxAmpereMotorRight_mA: 1650,
MinChargedBatteryLevel_mV: 12000,
MaxChargedBatteryLevel_mV: 16800,
MaxRpmMotorLeft: 65535,
MaxRpmMotorRight: 65535,
MaxTorqueMotorLeft_Ncm: 60,
MaxTorqueMotorRight_Ncm: 60,
MotorEnableLevel: 1,
RatioMotorLeft: 55,
RatioMotorRight: 55,
RatioShaftLeft: 3,
RatioShaftRight: 3,
Weight_g: 5000,
WheelBase_mm: 340,
WheelRadiusLeft_cent_mm: 3500,
WheelRadiusRight_cent_mm: 3500,
Width_mm: 420
}
16 changes: 16 additions & 0 deletions robocontroller_woodybot.launch
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<launch>
<node pkg="robocontroller" type="robocontroller_node" name="robocontroller_node" required="true">

<!-- Global Params -->
<param name="/global/Telemetry_freq" type="double" value="30.0" />
<param name="/global/Command_timeout" type="double" value="0.5" />
<param name="/general/Speed_filter_enabled" type="bool" value="true" />

<!-- RoboController Communication Params -->
<rosparam file="$(find robocontroller)/config/rc_serial.yaml" command="load" />
<param name="/rc_serial/Simulation_Active" type="bool" value="false" />

<!-- Robot Params: these parameters are saved on the EEPROM of the RoboController board -->
<rosparam file="$(find robocontroller)/config/woodybot_params.yaml" command="load" />
</node>
</launch>

0 comments on commit ae9a1e7

Please sign in to comment.