Skip to content

Latest commit

 

History

History
39 lines (25 loc) · 1.17 KB

README.md

File metadata and controls

39 lines (25 loc) · 1.17 KB

Build project


accidental art

C++ library to talk to Sick LMS511 sensors

This library implements ASCII SOPAS subsets to talk to LMS511 scanners. It should work with all LMS5xx scanners, though this has not been tested.

Usage

You can install this CMake project in the usual way, but inclusion via add_subdirectory() should also work. Linking to the library can be done like this

find_package(SickLMS5xx REQUIRED)
target_link_libraries(<target> PUBLIC SickLMS5xx::SickLMS5xx)

See src/example.cpp for how to interact with a scanner.

Requirements

Uses BSD sockets and should therefore run on Linux and MacOS.

The dependencies are

  • PCL >= 1.10, which is available in the package repos only from ubuntu 20.04. for older OS versions, you'll have to install form source
  • Eigen3, which is a PCL dependency anyway
  • Doxygen if you want to generate HTML doc

Disclaimer

Not affiliated with Sick AG