Reputation: 1
I couldn't find information regarding integration between VL53L0X and STM32 microcontrollers using a board such as the ones sold by polulu or adafruit. STM provides an API for P-NUCLEO-53L0A1 that is hard and complex to implement on others STM32 microcontrollers. I saw many examples for Raspberry Pi and Arduino but nothing for generic for STM boards. Is there any example code/tutorial that integrates STM32 MCU with VL53L0X?
Upvotes: 0
Views: 1053
Reputation: 3255
The VL53L0X is a generic I2C device. There exist almost never any easy complete libraries for integrating such a device into any environment you might want. What you are going to have to do is to read the datasheet and possibly any other materials provided by ST for it and then write your own interfacing code on top of (preferably) the STM32 I2C HAL.
Upvotes: 0