benewake lidar (1)

Benewake TF Series (mini-S, mini-Plus, 02-Pro, Luna) LiDAR can be connected with the IIC port of PixHawk 6C and 6X Flight from HolyBro. There are three IIC ports available on PixHawk 6C:

  1. On GPS-1> pin-4: SCL1, pin-5: SDA1;
  2. On GPS-2> pin-4: SCL2, pin-5: SDA2;
  3. On I2C> pin-2: I2C2_SCL, pin-3: I2C2_SDA;

but by default, data can only be read through I2C port. In order to use other ports some settings will be required like compiling the firmware from source code and directing the data flow to other ports etc., because there are no direct settings available in Ardupilot firmware. In this tutorial we will use I2C port (I2C2_SCL, I2C2_SDA). LiDAR can be interfaced with flight controller for the purpose of Altitude Holding, Obstacle Avoidance or Terrain Following (first two will be explained in this document). At the time of writing this document, the controller used was PixHawk 6C from HolyBro flashed with ArduCopter V4.3.3. However, this document can also be used with PixHawk 6X and other flight controllers running with different ArduCopter firmware versions with slight modification in parameter names and choosing the right port on flight controller. For choosing right port, refer to the port mapping of flight controller in its documentation. Please note that supported firmware of Ardupilot for PixHawk 6C and 6X is 4.2.3 stable release and later.

  1. TFSeries LiDAR Settings for IIC Interface:

Note: IIC interface is like interactive mode, you need to send command and receive the response from LiDAR. So, in order to process the command to obtain data-packet, LiDAR needs some processing time. The recommended relation is:

 

So, if LiDAR frame-rate is 100Hz then external frame-rate (the rate at which you send the command to the LiDAR) should 20Hz. If you need higher external frame-rate then you could increase LiDAR internal frame-rate by sending commands and following the above relation. Please refer to the manual of respective LiDAR. However, this is required if there are fluctuations in readings, otherwise don’t need to do so. Please see the details of “frame rate” and changing the communication interface commands in the manual.

Standard output mode of LiDAR needs to be used instead of PIX mode in the latest firmwares. PIX mode was only required for the firmware versions older than Arducopter V3.6.2.

The default communication of TF Series LiDAR is TTL (UART). Both interfaces use the same cable, so please set the LiDAR to IIC communication first, see detailed commands in product manual.

We take three LiDARs as an example for (obstacle avoidance and altitude hold) in this tutorial and set the addresses to 0x10, 0x11 and 0x12 (16, 17, 18 in decimal respectively).

 12870818101?profile=RESIZE_710x

Figure-1: Pinout sequence of available ports on PixHawk 6C

Please pay attention that Pin 1 starts from the flight controllers "right side" like in the diagram shown above.

Note:

  1. Default cable sequence of LiDAR and PixHawk (6C and 6X) is different, please pay attention to the wiring sequence. LiDAR connector is 4-pin JSTwith 1.25mm pitch and controller needs JST GH25mm 4-pin connector to interface LiDAR with I2C port. Or you can also make an intermediate cable for connecting TF series LiDAR with flight controller. Looking at the pinout of controller (6C), pin configurations are:

 12870818861?profile=RESIZE_710x

Figure-2: Pinout description of I2C port on PixHawk 6C

  1. If LiDAR faces down, please take care of the distance between lens and ground, it should be larger than LiDAR blind zone (10cm or 20cm depending upon which LiDAR you are using).
  2. If more LiDARs need to be connected (10 LiDARs can be connected), the method is same.
  3. Power source should meet the product manual requirements; Voltage: 5V±0.5V, Current: larger than (peak-current of LiDAR*number of LiDARs connected). For current and voltage requirements, please refer to the data-sheet of respective LiDAR.
  4. The communication interface of TFmini-S, TFmini-Plus and TF02-Pro can be switched by sending commands. However, in case of TF-Luna, it can be switched by connecting its 5thpin to ground. Please see TF-Luna IIC communication pin details as below:

 12870818479?profile=RESIZE_710x

 Figure 3: Pin sequence TF-Luna

If we look at the pin configuration of TF-Luna, IIC can be set by grounding pin-5 in addition to the other four pins. For this purpose, a customized cable is needed because in IIC mode we need to connect both pin-4 and pin-5 to the ground.

The modified cable is shown below. I have connected green wire (pin-4) and blue wire (pin-5) to single pin which will go to the GND pin of the source. Leave pin-6 connected. Please ignore the color standard in this case as black wire represents SDA while yellow wires represent SCL, just follow the pin numbering according to the product-manual.

 10972790082?profile=RESIZE_710x

So, based on the above discussion, you will need to add an extra wire (for TF-Luna) in the diagram (Figure 3) in order to use TF-Luna in IIC mode. For more understanding, I have added a separate connection diagram for connecting multiple TF-Luna using IIC interface.

12870820065?profile=RESIZE_710x

Figure 4: Schematic Diagram of Connecting TF-Luna to I2C Interface

  1. PixHawk 6C (from HolyBro) Connection:

Please refer to the product manual for wiring sequence of LiDAR:

12870820082?profile=RESIZE_710x

Figure 5: Schematic Diagram of Connecting three TF-LiDARs to I2C Interface of Flight Controller

  1. Parameters settings (Obstacle Avoidance and Altitude Hold):

Connect the flight control board to Mission Planar. Select [CONFIG/TUNING] and then click on [Full Parameter List] in the left from the below bar. Find and modify the following parameters:

12870820265?profile=RESIZE_710x

Attention: distance between UAV margin and LiDAR should be larger than LiDAR non-detection zone.

Common settings:

AVOID_ENABLE = 2 [if 3 = UseFence and UseProximitySensor doesn’t work in IIC then choose 2 = UseProximitySensor]

AVOID_MARGIN = 4 [can be set based on user requirements, can have different value depending upon which LiDAR you are using]

PRX1_TYPE = 4

AVOID_BEHAVE = 0 [This parameter will define what drone will do upon the encounter of obstacle (stop or slide to avoid the object) 0: Slide; 1: Stop]

Settings for First LiDAR:

RNGFND1_ADDR = 16 [Address of #1 sensor in decimal]

RNGFND1_MAX_CM = 400 [It could be changed according to real application requirement but should be smaller than effective measure range of LiDAR, depends on which LiDAR you are using, unit is cm] 

RNGFND1_MIN_CM = 30 [It could be changed according to real application requirement and should be larger than LiDAR non-detection zone, depends on which LiDAR you are using, unit is cm] 

RNGFND1_ORIENT = 0 [#1 sensor real orientation; 0~7, 24 = Up and 25 = Down (total ten are supported up till now), see details in MP]

RNGFND1_TYPE = 25 [ same for TFmini-S, TFmini-Plus, TF-Luna, TF02-Pro IIC]

Settings for Second LiDAR:

RNGFND2_ADDR = 17 [Address of #2 sensor in decimal]

RNGFND2_MAX_CM = 400

RNGFND2_MIN_CM = 30

RNGFND2_ORIENT = 4 [#2 sensor real orientation; 0~7, 24 = Up and 25 = Down (total ten are supported up till now), see details in MP]

RNGFND2_TYPE = 25 [same for TFmini-S, TFmini-Plus, TF-Luna, TF02-Pro IIC]

Settings for Third LiDAR (Altitude Hold):

RNGFND3_ADDR = 18 [Address of #3 sensor in decimal]

RNGFND3_MAX_CM = 400

RNGFND3_MIN_CM = 30

RNGFND3_ORIENT = 25 [#3 sensor real orientation; 0~7, 24 = Up and 25 = Down (total ten are supported up till now), see details in MP]

RNGFND3_TYPE = 25 [same for TFmini-S, TFmini-Plus, TF-Luna, TF02-Pro IIC]

RNGFND3_GNDCLEAR = 15 [Unit: cm, depending upon mounting height of the module and should be larger LiDAR than non-detection zone. This parameter is required for Altitude Hold.]

Upon setting of these parameters, click [Write Params] on the right of mission planner to finish. After writing the parameters you need to power off the controller and then turn it on to apply the setting changes.

12870821497?profile=RESIZE_584x

If the error message “Bad LiDAR Health” or “PreArm: check the proximity sensor” appear, please check if the connection is correct, the power supply is normal and you have restarted the controller. Also, check it whether you have changed the mode from Standard mode to Pix mode if yes then the same error will encounter.

How to see the target distance from the LiDAR: press Ctrl+F button in keyboard, the following window will pop out:

12870821886?profile=RESIZE_710x

Click button Proximity, the following window will appear:

12870822096?profile=RESIZE_710x

The number in green color means the distance from LiDAR in obstacle avoidance mode(it doesn’t mean the real time distance from LiDAR and will not be influenced in Mission Planner. The mission planner version at the time of writing this tutorial was v1.3.79.

 

How to see the altitude value from LiDAR sensor: double click the area of the Mission Planner, look at the following picture:

12870822655?profile=RESIZE_710x

 

Select option sonarrange, see following picture:

12870822667?profile=RESIZE_710x

The altitude distance from the LiDAR will be displayed in Sonar Range (meters), see the following picture:

12870822466?profile=RESIZE_400x

 

Data from Three LiDAR sensors:

You can see in the following image that RangeFinder1 (cm) does not display any data. The reason is, this LiDAR is used as Altitude Hold sensor, so its data is shown in Sonar Range (m). While the data of other two sensors is shown in Proximity window (right hand side).

12870822691?profile=RESIZE_710x

Read more…