cancel
Showing results for 
Search instead for 
Did you mean: 

With a VL53L3, how use autonomous mode thresholds in API ? Thank you in advance

Zschau
Associate II
 
1 ACCEPTED SOLUTION

Accepted Solutions
John E KVAM
ST Employee

That is true. There is no Autonomous mode for the L3.

So here is the trick. The L3 is basically the same chip as the L0 (which does do Autonomous mode) however the L3 uses HISTOGRAMS.

The L3 sensor does not to process the histrograms - it can only collect them.

So the raw histrogram data is sent to your MCU for post processing. And it is your MCU that extracts the answer. That's in the API.

The good news is the answer is really good. The bad news is the chip cannot run Autonomously.

For Autonomous mode you have to use either the VL53L0X or the VL53L1X.

  • john

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

3 REPLIES 3
Zschau
Associate II

i have found for VL53L1 " VL53LX_Error VL53LX_set_GPIO_interrupt_config " but not for VL53L3 !

John E KVAM
ST Employee

That is true. There is no Autonomous mode for the L3.

So here is the trick. The L3 is basically the same chip as the L0 (which does do Autonomous mode) however the L3 uses HISTOGRAMS.

The L3 sensor does not to process the histrograms - it can only collect them.

So the raw histrogram data is sent to your MCU for post processing. And it is your MCU that extracts the answer. That's in the API.

The good news is the answer is really good. The bad news is the chip cannot run Autonomously.

For Autonomous mode you have to use either the VL53L0X or the VL53L1X.

  • john

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.
Zschau
Associate II

Thank you for your reply.

Zschau.j