Changes between Version 1 and Version 2 of PacpusSensors/SickPlugins
- Timestamp:
- Apr 2, 2014, 9:39:28 AM (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
PacpusSensors/SickPlugins
v1 v2 13 13 == Compilation == 14 14 15 Fi st, make sure the CMakeList.txt at the root of the directory is well configured (into trunk/). In order to install the Sick plugin, modify the file and verify you have the following line :15 First, make sure the CMakeList.txt at the root of the directory is well configured (into trunk/). In order to install the Sick plugin, modify the file and verify you have the following line : 16 16 {{{ 17 17 #!sh … … 39 39 == XML == 40 40 41 Depending on used sensors and how many, you should define these three property in a "Sick" node (X must start from ’0’) : 42 * sickldmrs_X 43 * sicklms151_X 44 * sicklms511_X 45 For example, let’s say we have two Sick LMS151, one LDMRS and one LMS511 : 46 47 {{{ 48 #!xml 49 <?xml version="1.0" encoding="ISO-8859-1"?> 50 <pacpus> 51 <components> 52 <Sick type="SickComponent" 53 sickldmrs_0="192.168.0.1:12002" sickldmrs_0_recording="1" 54 sicklms151_0="192.168.0.10:2111" sicklms151_0_recording="1" 55 sicklms151_1="192.168.0.11:2111" sicklms151_1_recording="1" 56 sicklms511_0="192.168.0.50:2111" sicklms511_0_recording="1" /> 57 </components> 58 <parameters> 59 <plugins list="libSick.so" /> 60 </parameters> 61 </pacpus> 62 }}} 63 41 64 = Execution = 42 65