Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Suggestion: Add getGetRangeStatus() to example to properly handle empty rooms and out of range. #54

Open
jhaand opened this issue Aug 19, 2022 · 0 comments

Comments

@jhaand
Copy link

jhaand commented Aug 19, 2022

Expected: Doing a getDistance() with the VL53L1x sensor towards an empty room results in a large distance reading.
Observed: Sometimes the getDistance() towards an empty room results in values close to the sensor (500 mm or less.)
work-around: Check the quality of the measured value by doing a getRangeStatus() over the observed reading. If it's not 0 or 1, then discard the de read distance.

Reference: St forum discussion here. https://community.st.com/s/question/0D50X00009sUiJUSA0/out-of-range-readings-of-vl53l1x

note: This has taken me more than a day to figure out. It would help if the default example would also show the getRangeStatus() of the sensor to help people get their application going. See the example below.

        distanceSensor.startRanging(); // Write configuration bytes to initiate measurement
        while (!distanceSensor.checkForDataReady()) {
            delay(1);
        } 
        distance = distanceSensor.getDistance(); // Get the result of the measurement from the sensor
        sensor_state = distanceSensor.getRangeStatus(); // Check if the sensor actually sees an object.
        distanceSensor.clearInterrupt();
        distanceSensor.stopRanging();
    }
    if (sensor_state > 0) {   // If no object is seen then return an status value. 
        distance = -1;
    }
    return distance;
@jhaand jhaand changed the title Suggestion: Add getGetRangeStatus() to example to properly handle empty rooms. Suggestion: Add getGetRangeStatus() to example to properly handle empty rooms and out of range. Aug 19, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant