User Activity

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_...
Unused code detected:VL53L1_Error VL53L1::VL53L1_RdByte(VL53L1_DEV Dev, uint16_t index, uint8_t *data){ int status; status = VL53L1_I2CRead(Dev->I2cDevAddr, index, data, 1); //FR bug :: I2CRead exits always with 0! why the following check? Unused...
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...