Wish List 0

Rp Lidar A3M1 360°Laser Range Scanner 25 Meter Range

Rs. 61,039.00 Rs. 69,585.00

1.  The RPLIDAR A3M1 is the following era low price 360 ranges 2D laser scanner (LIDAR) answer evolved via SLAMTEC. It can take in to 16000 samples of laser ranging in line with second with high rotation speed. And equipped with SLAMTEC patented OPTMAG generation, it breakouts the life predicament of traditional LIDAR gadget so that you can work stably for a long term.

2.  The system can perform 2D 360-degree experiment inside a 25-meter variety. The generated 2D point cloud records may be used in mapping, localization and object/surroundings modeling. Compared with RPLIDARs in different series, RPLIDAR A3M1 has a more strong overall performance whilst detecting items inside the lengthy distance, gadgets in white or black as an alternative and gadgets underneath direct sunlight, which is right for map building in the outdoor surroundings inside a 25-meter ranging radius. Therefore, it is able to be widely applied in many client-orientated business eventualities.

3.  RPLIDRA A3M1 supports to work under two modes as an alternative: better mode and out of doors mode. In the enhanced mode, it works with the maximum ranging radius and sampling rate to comprehend an optimistic mapping performance in the indoor environments. While in the outdoor mode, RPLIDAR A3M1 works with a extra reliable resistance to daylight interference, which prevents it from “blind” in an out of doors environment. The common scanning frequency of RPLIDAR A3M1 is 10Hz(600rpm), and the frequency can be freely adjusted inside the 5-20Hz range in keeping with the particular necessities. With the 10Hz scanning frequency, the sampling price is 16kHz and
the angular decision is 0.225°.

SPECIFICATIONS:

     Distance Range                 :White object: 25 meters;Black object: 10 meters

    Sample Rate                        :16 kHz

    Scan Rate                             :Typical value: 15 Hz (adjustable between 5 Hz-20 Hz)

    Angular Resolution            :0.225°

   Communication Interface :TTL UART

   Communication Speed      :256000 bps

   Compatibility Support   :former SDK protocols


OVERVIEW:

   -Ranging 16000 Times per Second

   -25 Meters Range Radius

   -Indoor and Outdoor Availability

   -360 Degree Omnidirectional Laser Range Scanning

   -4 Centimeters Ultra-thin

   -Brushless Motor, Low Noise, New Non-contact Drive

   -OPTMAG Original Design, 5 Years Ultra-long Life

  -The RPLIDAR A3 system adopts the low power infrared laser Light

PACKAGE INCLUDES:

   1 PCS x Rp Lidar A3M1 360°Laser Range Scanner 25 Meter Range

   1 PCS x USB Adapter

   1 PCS x Micro-USB cable

   1 PCS x DC Power Cable

//SOURCE CODE TAKEN FROM BELOW LINK

//https://www.instructables.com/How-to-Use-the-RPLIDAR-360-Laser-Scanner-With-Ardu/

/*

   RoboPeak RPLIDAR Arduino Example

   This example shows how to control an RGB led based on the scan data of the RPLIDAR


   The RGB led will change its hue based on the direction of the closet object RPLIDAR has been detected.

   Also, the light intensity changes according to the object distance.


   USAGE:

   ---------------------------------

   1. Download this sketch code to your Arduino board

   2. Connect the RPLIDAR's serial port (RX/TX/GND) to your Arduino board (Pin 0 and Pin1)

   3. Connect the RPLIDAR's motor ctrl pin to the Arduino board pin 3

   4. Connect an RGB LED to your Arduino board, with the Red led to pin 9, Blue led to pin 10, Green led to pin 11

   5. Connect the required power supplies.

   6. RPLIDAR will start rotating when the skecth code has successfully detected it.

   7. Remove objects within the 0.5 meters' radius circule range of the RPLIDAR

   8. Place some object inside the 0.5 meters' range, check what will happen to the RGB led :)

*/


/*

   Copyright (c) 2014, RoboPeak

   All rights reserved.

   RoboPeak.com


   Redistribution and use in source and binary forms, with or without modification,

   are permitted provided that the following conditions are met:


   1. Redistributions of source code must retain the above copyright notice,

      this list of conditions and the following disclaimer.


   2. Redistributions in binary form must reproduce the above copyright notice,

      this list of conditions and the following disclaimer in the documentation

      and/or other materials provided with the distribution.


   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY

   EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES

   OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT

   SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,

   SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT

   OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)

   HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR

   TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,

   EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.


*/


// This sketch code is based on the RPLIDAR driver library provided by RoboPeak

#include <RPLidar.h>


// You need to create an driver instance

RPLidar lidar;


// Change the pin mapping based on your needs.

/////////////////////////////////////////////////////////////////////////////

#define LED_ENABLE  12 // The GPIO pin for the RGB led's common lead. 

// assumes a common positive type LED is used

#define LED_R       9  // The PWM pin for drive the Red LED

#define LED_G       11 // The PWM pin for drive the Green LED

#define LED_B       10 // The PWM pin for drive the Blue LED


#define RPLIDAR_MOTOR 3 // The PWM pin for control the speed of RPLIDAR's motor.

// This pin should connected with the RPLIDAR's MOTOCTRL signal

//////////////////////////////////////////////////////////////////////////////



#include <NeoPixelBus.h>


const uint16_t PixelCount = 24; // this example assumes 4 pixels, making it smaller will cause a failure

const uint8_t PixelPin = 5;  // make sure to set this to the correct pin, ignored for Esp8266


#define colorSaturation 64


NeoPixelBus<NeoRgbFeature, Neo800KbpsMethod> strip(PixelCount, PixelPin);



RgbColor red(colorSaturation, 0, 0);

RgbColor green(0, colorSaturation, 0);

RgbColor blue(0, 0, colorSaturation);

RgbColor white(colorSaturation);

RgbColor black(0);


void blackStrip() {

  for (int i = 0; i < PixelCount; i++) {

    // strip.SetPixelColor(i, leds[i]);

    strip.SetPixelColor(i, black);

    // leds[i] = black(0);

  }

}


void pointangle(int angle) {

  // blackStrip();

  strip.SetPixelColor(map(angle, 0, 360, 0, 23), green);

  strip.Show();

}


void setup() {

  // bind the RPLIDAR driver to the arduino hardware serial

  strip.Begin();

  blackStrip();

  strip.Show();


  lidar.begin(Serial1);


  // set pin modes

  pinMode(RPLIDAR_MOTOR, OUTPUT);



}


float minDistance = 100000;

float angleAtMinDist = 0;

int nsbit = 0;

void loop() {

  analogWrite(RPLIDAR_MOTOR, analogRead(A0));

  if (IS_OK(lidar.waitPoint())) {

    //perform data processing here...

    float distance = lidar.getCurrentPoint().distance;

    float angle = lidar.getCurrentPoint().angle;

    if (lidar.getCurrentPoint().startBit) {

      nsbit++;

    }

    if (nsbit > 2) {

      // a new scan, display the previous data...

      // displayColor(angleAtMinDist, minDistance);

      blackStrip();

      pointangle(angleAtMinDist);

      minDistance = 100000;

      angleAtMinDist = 0;

      nsbit = 0;

    } else {

      if ( distance > 0 &&  distance < minDistance) {

        minDistance = distance;

        angleAtMinDist = angle;

      }

    }

  } else {

    analogWrite(RPLIDAR_MOTOR, 0); //stop the rplidar motor


    // try to detect RPLIDAR...

    rplidar_response_device_info_t info;

    if (IS_OK(lidar.getDeviceInfo(info, 100))) {

      //detected...

      lidar.startScan();

      // analogWrite(RPLIDAR_MOTOR, 255);

      analogWrite(RPLIDAR_MOTOR, analogRead(A0));

      delay(1000);

    }

  }

}


    https://youtu.be/jr16sea_xSY

15 days

Write a review

Please login or register to review