Changes between Version 1 and Version 2 of PacpusSensors/SickPlugins


Ignore:
Timestamp:
Apr 2, 2014, 9:39:28 AM (11 years ago)
Author:
cfougera
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • PacpusSensors/SickPlugins

    v1 v2  
    1313== Compilation ==
    1414
    15 Fist, 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 :
     15First, 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 :
    1616{{{
    1717#!sh
     
    3939== XML ==
    4040
     41Depending 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
     45For 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"
     53sickldmrs_0="192.168.0.1:12002" sickldmrs_0_recording="1"
     54sicklms151_0="192.168.0.10:2111" sicklms151_0_recording="1"
     55sicklms151_1="192.168.0.11:2111" sicklms151_1_recording="1"
     56sicklms511_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
    4164= Execution =
    4265