VL53L0X sensor testing

How to check the VL53L0X sensor if working correct or not?
We developing product using these long range sensors, we are having 1000s of sensors. We have to check each sensor IR emitter working accurate or not? is there any way to find by code?

We test all of our electronics before they ship, so if you are using our carrier boards, you could be fairly confident that they should work.

Like you suggested, one way to test that those sensors are working correctly is by running some example code. If you have any Arduinos, you might consider using our Arduino VL53L0X library, which also has a couple example programs for range finding. If you do not have any Arduinos, you might consider reviewing ST’s API, or this Raspberry Pi port of that API. All of those things are linked to under the Resources tab of the VL53L0X’s product page.

Also, if you only want to test I²C communication, you can try checking the I²C interface reference registers, which are detailed in section 3.2 of the VL53L0X datasheet (the datasheet is also linked to under the Resources tab of the VL53L0X’s product page).

-Jon