Calling status = sensor_vl53l1.VL53L1_GetMeasurementDataReady(&NewDataReady);from the Example, I get only status = 0 and NewDataReady = 0;I stepped into the functions down to the Device access via I2C.All went well so far. I got: gpio__tio_hv_...
vl53l1_class.cpp, Line 3864ff //Fix for some STM32 boards //Reinitialize th i2c bus with the default parameters#ifdef ARDUINO_ARCH_STM32 if (status) { dev_i2c->end(); // the method end() doesn't exist, you meant: dev_i2c->endTransm...
Environment: Arduino, STM32F1, ESP32I2CScanner told me a device has the address #29Your default address in the sample code is #12Software: VL53L1_Sat_Helloworld Examplechanges: DEV_I2C.begin(23, 22); // I2C 1: SDA, SCL sensor_vl53l1_sat.InitSensor(0...
I solved the problem. The provided examples software for Arduino Environment's never worked. I will publish my example and the working solution at my GitHub the next days. It's running on ESP 8266 and ESP32 and STM platforms.
I solved the problem. The provided examples software for Arduino Environment's never worked. I will publish my example and the working solution at my GitHub the next days. It's running on ESP 8266 and ESP32 and STM platforms.
I solved the problem. The provided examples software for Arduino Environment's never worked. I will publish my example and the working solution at my GitHub the next days here. It's running on ESP 8266 and ESP32 and STM platforms. Thank you very much...
Hello John, which of the lIbrary functions is like this that we, customers, have to adapt. I did not mention this (Wire, I2C Bus etc.). Maybe it was written somehow.I got a Interrupt based version running, but with a very difficult timing of VL53L1_C...