The problem why i dont got any data from vl53l0x was because it seams that my jumpers were damaged
I changed the wiring befor testing with Arduino IDE. Now i check with esp-idf and it works and i get data from the sensor.
Hi, now i am a bit confused. I tried a lot but could not get the vl53l0x to run. i tried to scan the i2c port to verify that the hardware and the pinout is right and dont got it to detect the vl53l0x. Next i tried to use Arduino IDE because all examples i have found are with Arduino IDE. Wow with Ar...
Thanks for your help so far, but now i got another problem. My setup code looks like following i2c_port_t i2c_master_port = I2C_NUM_1; i2c_config_t conf={0}; conf.mode = I2C_MODE_MASTER; conf.sda_io_num = 21; conf.sda_pullup_en = GPIO_PULLUP_DISABLE; conf.scl_io_num = 22; conf.scl_pullup_en = GPIO_P...
Ah thanks! I included the component into my Project but cant figure out how to use it correctly. Do i have to initialize the i2c driver by myself? Could not found any initialization code in the Api Layer. My first step is to init the sensor like so VL53L0X_Dev_t dev = {0x00}; dev.i2c_address = 0x52;...
Hi i want to use the Api from St for the vl53l0x laser sensor. The documentation says that you have to write the platform specific part to use the Api for example for esp32. Did someone already do that?!
I think you need to write the platform specific parts under vl53l0x_platform.h like the documentation says to use the api for esp32.
You already did that?!