Skip to main content

Slamtec RPLIDAR A1 interface

Project description

Introduction

Provide an interface to the SlamTec RPLidar A1.

Eventual goal is for the single module to work with both Linux (via /dev/USB0, etc) and CircuitPython (via a UART instance)

Usage Example

import os
from math import cos, sin, pi, floor
import pygame
from adafruit_circuitpython_rplidar import RPLidar

# Set up pygame and the display
os.putenv('SDL_FBDEV', '/dev/fb1')
pygame.init()
lcd = pygame.display.set_mode((320,240))
pygame.mouse.set_visible(False)
lcd.fill((0,0,0))
pygame.display.update()

# Setup the RPLidar
PORT_NAME = '/dev/ttyUSB0'
lidar = RPLidar(None, PORT_NAME)

# used to scale data to fit on the screen
max_distance = 0

def process_data(data):
    # Do something useful with the data
    pass

scan_data = [0]*360

try:
    print(lidar.get_info())
    for scan in lidar.iter_scans():
        for (_, angle, distance) in scan:
            scan_data[min([359, floor(angle)])] = distance
        process_data(scan_data)

except KeyboardInterrupt:
    print('Stoping.')
lidar.stop()
lidar.disconnect()

Contributing

Contributions are welcome! Please read our Code of Conduct before contributing to help this project stay welcoming.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

adafruit-rplidar-0.0.1.tar.gz (7.2 kB view details)

Uploaded Source

Built Distribution

adafruit_rplidar-0.0.1-py3-none-any.whl (7.6 kB view details)

Uploaded Python 3

File details

Details for the file adafruit-rplidar-0.0.1.tar.gz.

File metadata

  • Download URL: adafruit-rplidar-0.0.1.tar.gz
  • Upload date:
  • Size: 7.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.0

File hashes

Hashes for adafruit-rplidar-0.0.1.tar.gz
Algorithm Hash digest
SHA256 d05236e7a95968030f1d52d6c4907d543bf5231a2576ee23d4f2a281a9728160
MD5 c0558d03250d413351f7b8dcfffdeb49
BLAKE2b-256 4710e9b3e6f16c8bef04fde08c7c2453a8d3694bdb2110b211760ea62fcc5e52

See more details on using hashes here.

File details

Details for the file adafruit_rplidar-0.0.1-py3-none-any.whl.

File metadata

  • Download URL: adafruit_rplidar-0.0.1-py3-none-any.whl
  • Upload date:
  • Size: 7.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.0

File hashes

Hashes for adafruit_rplidar-0.0.1-py3-none-any.whl
Algorithm Hash digest
SHA256 199666db02162a53afe2e0fad3ba059bde9e3cf8b284e84d8d5f9f37d44c7673
MD5 7ef3c5ebca626ee8d2955327cc479bd5
BLAKE2b-256 c257283b329d26e1da6158483cfc4df4d69c28f4132a119168e84dbe68e19ca8

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page