2021-11-23 11:25 AM
I have a design ready to go but it needs to work for 3 years using 4xAA alkaline batteries. My company has planned 500K pcs/yr. I would really appreciate any help with this.
Thanks,
AL
2021-12-07 12:15 PM
I think you are using the wrong sensor. The VL6180V1 is the best short-distance sensor. More accurate, less power.
And the key is the Early Escape of the VL6180V1.
So a quick lesson on power…
When the sensor is ranging it’s going to use 20mA.
And a normal range will take about 10 ms.
If you want to range 100 times per second, you will consume the entire 20mA.
So, to save power we have some features.
3 x 0.5ms X 20mA = 0.03mA
And that’s steady state with no target.
If there is a target within a foot or two the power consumption would be
20mA X 3 X 10ms which is 20X more.
This is just a really quick evaluation, but it should be reasonably close.
2021-12-08 06:53 AM
2021-12-08 08:25 AM
The L0 code has in it a MSRC (Minimal Signal Rate Check) and that's the thing that is supposed to shut down the range if no photons are detected.
We deprecated the MSRC in the data sheet, as it was difficult to tune.
But the code is in our distribution and you can certainly give it a try.
The way to tell if it's working is to keep track of the start time. If the answer comes back in less than 1ms, you know the MSRC caused the range to abort.
I cannot promise that it's flawless however - that's why we removed it from the datasheet.