Hello,
I used the gopigo3 robot this year in class, and I will have soon to do a presentation of my project.
I have been looking for the distance sensor datasheet or characteristics on the internet but I found nothing excepted the sensor’s range.
I would like to know its accuracy and if there is any documents about that sensor.
Can anyone help me with that ?
Thank you
Hi @thomas.bmichel ,
The distance sensor is based on VL53L0X
chip. Here’s a datasheet for it:
Also, the source code for this sensor can be found on our repository. The most important scripts are these:
# https://www.dexterindustries.com
#
# Copyright (c) 2017 Dexter Industries
# Released under the MIT license (http://choosealicense.com/licenses/mit/).
# For more information see https://github.com/DexterInd/DI_Sensors/blob/master/LICENSE.md
#
# Python drivers for the Dexter Industries Distance Sensor
from __future__ import print_function
from __future__ import division
from di_sensors import VL53L0X
import time
class DistanceSensor(object):
"""
Class for interfacing with the `Distance Sensor`_.
"""
def __init__(self, bus = "RPI_1"):
This file has been truncated. show original
And you also might be interested in reading our documentation about the distance sensor:
http://di-sensors.readthedocs.io/en/master/examples/dist_sensor.html
Thank you!
Thank you so much ! @RobertLucian