Available now on GroupGets!

alt text datum-Distance


specifications

  • Measurement Range: 0.04 m - 3.6 m
  • Field of View: 27°
  • Laser Type: 940 nm (IR) Class 1
  • Maximum Report Rate: 50 Hz
  • Sensor Type: USB
  • Dimensions: 1.0” x 1.75” (25.4 mm x 44.4 mm)
  • Mounting Holes: 4 x 4-40 holes, 0.75” x 1.5” on center (19.05 mm x 38.1 mm)

features

  • Atmel SAMD21G18 microcontroller
  • ST Microelectronics VL53LX1 distance sensor
  • Onboard EEPROM settings storage
  • URI style command interface
  • JSON formatted data packets
  • Globally unique 64 bit UUID
  • UF2 Bootloader

  • datum
    1. a piece of information
    2. a fixed starting point of a scale or operation
  • distance
    1. an amount of space between two things or people

The datum-Distance sensor combines the same SAMD21G18 microcontroller used on the Arduino Zero with the VL53LX1 distance sensor from ST Microelectronics to create the simplest, easiest to use distance sensor for your application.

The datum-Distance sensor emulates a serial port over a USB connection, presents the information and data stored on it in a JSON formatted packet, and processes URI style commands to change and retrieve its settings. The datum-Distance sensor fills the gap between a LEGO® Mindstorms® sensor and a breakout board.

Control the behavior of the sensor by using URI style commands right from your favorite terminal program. Want to set the report rate to 10 Hz and send the reports automatically? The following command does just that.

set /config?reportRate=10&automaticReporting=true

Not sure what the settings for the datum-Distance sensor were? The following command will retrieve them in a JSON formatted data packet.

get /sensor/distance/config

{
  "distance": {
    "enabled": true,
    "units": "mm",
    "filterType": "none",
    "sampleRate": 10,
    "dataRate": 10
  }
}

The data from the datum-Distance sensor is also encapsulated in a JSON formatted packet. This results in human readable text that is still easy to parse with your favorite programming language. An example of the output is shown below.

{
  "timestamp": 18785.05,
  "distance": {
    "time": [18779.6, 18780.6, 18781.6, 18782.6],
    "distance": [1888, 1855, 1988, 1556]
  }
}

The datum-Distance sensor can do much more than just collect the data. The measurement units can be customized to suit your application. Distance data can be returned in mm, cm, inches, or feet. The datum-Distance sensor does all the calculations for you.

It can also apply filters such as min, mix, mean, and RMS to the data stream. This truly makes the datum-Distance sensor a smart sensor that goes far beyond what a breakout board can do. The datum-Distance sensor is also programmed with an Arduino compatible bootloader allowing full customization of the firmware.

alt text alt text

The datum-Distance sensor is just one of the sensors in the datum line currently available. The other sensors, datum-Weather, datum-Light, and datum-IMU all feature the same easy to use, text based interface. More information on the full spectrum of sensors is available here.