cancel
Showing results for 
Search instead for 
Did you mean: 

Discrepancy Between 4x4 and 8x8 Resolution Distance Output

JahKMC
Associate III

I am currently testing the VL53L7CX sensor(w/ vl53l5cx_api) with the STM32F7 MCU. The default resolution of 4x4, when running, would consistently return distances around 2.5 -3.0 meters with a target status code of 5 for multiple runs. 

I then tested 8x8 resolution and it began to return distances no higher than 1 meter with numerous error codes within the 64 zones target status (0,13,255 if I recall). Though, when I would hold my hand over the device it would return the ranges under a meter(this makes sense) with a target status 5 for all zones even when repeated. Please note that the room conditions of the 4x4 measurements and the 8x8 measurements were the same.  

Is there any reason for the readings to be present incorrectly when 8x8 resolution is used but 4x4 seems to work as expected? 

 

 

1 ACCEPTED SOLUTION

Accepted Solutions
John E KVAM
ST Employee

In order to work, the sensor needs a number of photons returned from the target. Generally, we would like to have 20Million per second. But the sensor works very acceptably down to about 0.5M per second. At 2.5-3.0 meters you are getting to the limit of what you might expect. With a reasonably reflective wall (white) you can probably get to 3.5, but most normal paints are about 50% reflective, meaning you cannot range as far. 

In 4x4 mode we have 4X the number of photon detectors for each zone. And that is why it works to a longer distance.

I'll bet if you double check, the error status you get is 'low signal'. It just means the sensor did not get enough photons to get a result for that zone. 

the VL53L7 spreads the light to cover about 4 times the area that the VL53L5 or VL53L8 does. If you need to see longer you can switch chips, but you do give up the wider field of view. 

 


If this or any post solves your issue, please mark them as 'Accept as Solution' It really helps. And if you notice anything wrong do not hesitate to 'Report Inappropriate Content'. Someone will review it.

View solution in original post

2 REPLIES 2
John E KVAM
ST Employee

In order to work, the sensor needs a number of photons returned from the target. Generally, we would like to have 20Million per second. But the sensor works very acceptably down to about 0.5M per second. At 2.5-3.0 meters you are getting to the limit of what you might expect. With a reasonably reflective wall (white) you can probably get to 3.5, but most normal paints are about 50% reflective, meaning you cannot range as far. 

In 4x4 mode we have 4X the number of photon detectors for each zone. And that is why it works to a longer distance.

I'll bet if you double check, the error status you get is 'low signal'. It just means the sensor did not get enough photons to get a result for that zone. 

the VL53L7 spreads the light to cover about 4 times the area that the VL53L5 or VL53L8 does. If you need to see longer you can switch chips, but you do give up the wider field of view. 

 


If this or any post solves your issue, please mark them as 'Accept as Solution' It really helps. And if you notice anything wrong do not hesitate to 'Report Inappropriate Content'. Someone will review it.
JahKMC
Associate III

This makes sense.Thanks for the help.