├── .gitignore ├── LICENSE ├── README.md ├── docs ├── Makefile ├── conf.py ├── index.rst └── requirements.txt ├── examples ├── animate.py ├── measure_speed.py ├── record_measurments.py └── record_scans.py ├── rplidar.py └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roboticia/RPLidar/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roboticia/RPLidar/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roboticia/RPLidar/HEAD/README.md -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roboticia/RPLidar/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roboticia/RPLidar/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roboticia/RPLidar/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- 1 | numpydoc 2 | -------------------------------------------------------------------------------- /examples/animate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roboticia/RPLidar/HEAD/examples/animate.py -------------------------------------------------------------------------------- /examples/measure_speed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roboticia/RPLidar/HEAD/examples/measure_speed.py -------------------------------------------------------------------------------- /examples/record_measurments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roboticia/RPLidar/HEAD/examples/record_measurments.py -------------------------------------------------------------------------------- /examples/record_scans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roboticia/RPLidar/HEAD/examples/record_scans.py -------------------------------------------------------------------------------- /rplidar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roboticia/RPLidar/HEAD/rplidar.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roboticia/RPLidar/HEAD/setup.py --------------------------------------------------------------------------------