Template: TOF Laser Range Sensor B Spec

From Waveshare Wiki
Jump to: navigation, search

Introduction

The TOF Laser Range Sensor (B) is a TOF-based (time of flight) laser ranging sensor with an embedded MCU and ranging algorithm, which is capable of offering up to 15m measuring range, ±2% accuracy, and 1mm resolution. It supports UART or I2C communication bus, features a longer measuring distance and higher light interference resistance capability due to its ultra-narrow FOV, suitable for either indoor or outdoor conditions.
This sensor can be widely used in applications like common distance measuring, robot obstacle avoidance/route planning, as well as drone altitude setting/ceiling detection, and more...

Specification

TOF-Parameter.png

Applications

  • Unmanned aerial vehicle height setting,ceiling detection
  • Robot obstacle avoidance
  • Measuring and detecting
  • Intelligent gesture control
  • 1-dimension gesture identification

Technology Overview

TOF is one absolute distance detecting technology, that is the sensor emits the near-infrared light to be debugged, and it will reflect after encountering the object. The sensor calculates the distance of the subject being photographed by calculating the time difference or phase difference for the emission and reflection of light so as to produce depth information. Compared with the binocular plan and 3D structural light plan, TOF has the advantages of long working distance, wide application scenarios, and high precision of long-distance, etc. Therefore, it is always applied to personnel proximity detection, robot obstacle avoidance, camera automatic focusing, etc. The near-infrared light coming from the sunlight in the outdoor environment will generate an impact on the measuring effect of the module.

TOF-Laser-Range-Sensor-work.jpg

Function Description

【ID】

  • ID is one variable designed for distinguishing the different sensors, which is used to identify each sensor during the cascade connection.

【Interface & Baudrate】

TOF Laser Range Sensor (B) supports UART, I2C and I/O .

UART

The communication baud rate setting range is as follows:

UART Baud Rate Note
115200,230400,460800,921600,1000000,1200000,2000000,3000000 921600 (by default)

The UART interface mode supports "active output" and "query output":
PC download:

  • TOF Assistant (For Windows 7/10 64 bits)
  • TOF Assistant (For Windows 7/10 32 bits)
  • Active Output:
    • The active output mode can only be used with a single module. In this mode, the module actively outputs measurement information at a frequency of 50 Hz, the format of output data is based on the NLink_TOFSense_Frame0 protocol.
    • Users can connect the Sensor to Windows PC by USB to TTL module and configure the module by Waveshare TOFAssistant software. Just like the picture below. You need to click the "Write Parameter" button to save the setting and don't forget to check them by "Read Parameter".
TOF-B-UART-Active-inquire.jpg
  • Query Output:
    • The query output mode can be used in a single module. In this mode, the controller sends a query command containing the module ID to the desired query module, and the module can output one frame of measurement information. The query command is based on NLink_TOFSense _Read_Frame0 protocol, and the output data from the module is based on the NLink_TOFSense_Frame0 protocol.
    • Connect the TOF series products to the Waveshare TOFAssistant software through the USB TO TTL module (line sequence and power supply voltage reference data sheet), click to enter the setting page after the identification is successful, the UART query output mode configuration is as shown in the figure below, after configuring the parameters, you need to click the write parameter button To save the parameters after the parameters are written successfully, you can read the parameters once to confirm whether the parameters are written successfully. (After changing the baud rate parameter of the module, you need to re-plug the USB TO TTL module to automatically identify the module):
TOF-B-UART-Inquire.jpg

I2C

  • The baudrate rate
I2C baudrate Description
Max 400KHz Max 4000KHz, it is defined by the host device
  • I2C address
I2C address Description
0x08 ~ 0x77 The default address is 0x08 (7 bits), the slaver address of the module is 0x08 + ID, you can change the device address by modifying the module ID. Please take care of offset and the behavior bit while communicating. for example, if the device address is 0x08, if you need to write data, you need to add the write bit and the byte sent should be 0x10, if you need to read data, you need to add the read bit and the byte sent should be 0x11.
In the I2C communication mode, the controller sends a reading frame to the expected query module of the specified slave address, and then the information such as the distance of the module can be obtained. In addition, various parameters such as the output mode of the module can also be changed through I2C communication. The reading frame and write frame format follow the protocol NLink_TOFSense_IIC_Frame0. You can connect the sensor to the PC by USB to the TTL module and change the device address (0x08 + ID, the ID should in the range 0 ~111) by the Waveshare TOFAssistant software. Note that, the Waveshare ToFAssitant software can only support UART mode.
TOF-B-I2C.jpg

I/O output

  • In I/O output mode, it doesn't output distance data. The voltage of I/O is toggled when the distance is over threshold.
When the module is in UART mode, users can connect it to the Windows PC by USB to TTL module and configure the band data by the Waveshare TOFAssistant software. The distance value is converted to high and low level output through hysteresis comparison. TX/SCL and RX/SDA output complementary levels. The hysteresis comparison diagram is shown in Figure 5. After configuring the parameters, you need to click the Write Parameters button to save the parameters. Note: After switching to I/O mode, you can refer to the FAQ chapter to change back to UART mode.
For example, Band_Start and Bandwidth are both set to 500, which corresponds to 0.5 meters. When the distance measurement value is 0.3 meters, RX is high, TX is low, the distance measurement value increases to 0.8 meters, RX is high, TX is low, and when the distance measurement value exceeds 1 meter, the level is reversed and RX is low, TX is high. When the distance measurement value drops from more than 1 meter to 0.8 meters, RX is low and TX is high. When the distance measurement value drops below 0.5 meters, the level is reversed, RX is high and TX is low.
TOF-B-IO.jpg
  • The range of Band_Start, Bandwidth is 0~15000 and 0~25000
TOF-B-Bandwidth.jpg

【Distance Status】

The module can output the current distance status, the user can perform the data processing with the combination of distance status,The meaning of distance status is as follows:

Value Note
0 Measuring distance is invalid
1 Measuring distance is valid

【Signal Strength】

Indicate the strength of current return signal, and the larger this value indicates the stronger the return signal.

【Range Precision】

Indicate the precision of current signal, smaller the data, higher the prevision.

【FOV】

The field angle FOV determines the vision scope of TOFSense. The FoV of the ToF Sensor (B) is 1~2°

【Mode Switch】

If the sensor is in UART mode, users can connect it to PC and chnage it to I2C or I/O mode by the Waveshare TOFAssistant software. If the sensor is in I2C mode, users can send commands to switch the mode to UART. And users can check the FAQ chapter about how to change to UART from I/O mode.

Protocol Analysis

  • The protocol is composed of Frame Header, Function Mark, Data, and Sum Check.
    • The Frame Header and Function Mark are fixed values;
    • Data is the content of the transmitted data;
    • Sum Check is the lowest byte after the addition of Frame Header, Function Mark, and Data (that is, the addition of all the previous bytes).
  • Agreement composition:
 Frame Header + Function Mark + Data + Sum Check

Note: Protocol packets follow the principle of little-endian mode, that is, the low byte is first and the high byte is last.

  • The frame:
Protocol Type Description
NLINK_TOFSENSE_FRAME0 Fixed length UART output data, contain the timestamp, distance, distance status and signal strength, etc.
NLINK_TOFSENSE_READ _FRAME0 Fixed length UART read, contain device ID
NLINK_TOFSENSE_IIC_FRAME0 Flexible length I2C data, contain distance, distance status and signal strength, etc.

NLink_TOFSense_Frame0

    • Data Sources: Connect the module to the host computer and configure the UART as active output mode.
    • Raw data:
 57 00 ff 00 9e 8f 00 00 ad 08 00 00 03 00 06 41
  • Analysis table:
Data Type Length (Bytes) Hex Result
Frame Header uint8 1 57 0x57
Function Mark uint8 1 00 0x00
reserved uint8 1 ff *
id uint8 1 00 0
System_time uint32 4 9e 8f 00 00 36766ms
dis*1000 uint24 3 ad 08 00 2.221m
dis_status uint8 1 00 0
signal_strength uint16 2 03 00 3
range_precision uint8 1 06 6cm
Sum Check uint8 1 41 0x41

NLink_TOFSense_Read_Frame0

    • Data Sources: Connect the module to the host computer, configure it as UART query output mode. Host device send cmmand to query the data
    • Raw data:
57 10 FF FF 00 FF FF 63
  • Analysis table:
Data Type Length (Bytes) Hex Result
Frame Header uint8 1 57 0x57
Function Mark uint8 1 10 0x10
reserved uint8 2 ff *
id uint8 1 00 0
reserved uint8 2 ff *
Sum Check uint8 1 63 0x63

NLink_TOFSense_IIC_Frame0

  • Device Address: The sensor works as slaver device, the default device address is 0x08 (7bits), the whole device address is 0x08 + ID, user can change the device address by modifying the ID.
  • Register address: If the register is NULL, the output is 0xff by default
AD 08 00 00 03 00 FF FF
  • Analysis table:
NLink TOFSense IIC Frame.png

I2C communication

NLink TOFSense IIC comunication3.png

Start: starting signal
W: read the flag bit 1
R: Write the flag bit 0
ACK: response
NACK: no response
Stop: stoping signal

NLink TOFSense IIC comunication4.png

Sent by the host
Sent by the slave

NLink_TOFSense_Setting_Frame0

    • Data Sources:: Setting Commands
  • Analysis table:

TOFSense-B-Setting-Frame.png

Software

TOF Assistant is the debugging software supporting the TOF laser ranging module. Its main functions are configuration debugging, status display, function application, and firmware upgrade:

  • Configuration and debugging: used to configure node-related parameters, such as ID, working mode, baud rate, etc.
  • Functional application: used for application development, such as data import and export, motion track storage, historical track playback, etc.
  • Firmware upgrade: used to upgrade the product by wired firmware.

Dimensions

  • TOF-Laser-Range-Sensor-B-details-size.jpg