├── Api ├── core │ ├── inc │ │ ├── vl53l0x_api.h │ │ ├── vl53l0x_api_calibration.h │ │ ├── vl53l0x_api_core.h │ │ ├── vl53l0x_api_ranging.h │ │ ├── vl53l0x_api_strings.h │ │ ├── vl53l0x_def.h │ │ ├── vl53l0x_device.h │ │ ├── vl53l0x_interrupt_threshold_settings.h │ │ └── vl53l0x_tuning.h │ └── src │ │ ├── vl53l0x_api.c │ │ ├── vl53l0x_api.c.bak │ │ ├── vl53l0x_api_calibration.c │ │ ├── vl53l0x_api_core.c │ │ ├── vl53l0x_api_ranging.c │ │ └── vl53l0x_api_strings.c └── platform │ ├── inc │ ├── vl53l0x_i2c_platform.h │ ├── vl53l0x_platform.h │ ├── vl53l0x_platform_log.h │ └── vl53l0x_types.h │ └── src │ ├── .vl53l0x_i2c_win_serial_comms.c.swp │ ├── vl53l0x_i2c_win_serial_comms.c │ ├── vl53l0x_platform.c │ └── vl53l0x_platform_log.c ├── Makefile ├── README.md ├── VL53L0X_Mutli_Rpi3_bb.jpg ├── VL53L0X_TCA9548A_Rpi3_bb.jpg ├── platform ├── inc │ ├── vl53l0x_platform.h │ ├── vl53l0x_platform_log.h │ └── vl53l0x_types.h └── src │ └── vl53l0x_platform.c ├── python ├── VL53L0X.py ├── VL53L0X_TCA9548A_example.py ├── VL53L0X_example.py ├── VL53L0X_example_livegraph.py └── VL53L0X_multi_example.py └── python_lib └── vl53l0x_python.c /Api/core/inc/vl53l0x_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbryanmoore/VL53L0X_rasp_python/HEAD/Api/core/inc/vl53l0x_api.h -------------------------------------------------------------------------------- /Api/core/inc/vl53l0x_api_calibration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbryanmoore/VL53L0X_rasp_python/HEAD/Api/core/inc/vl53l0x_api_calibration.h -------------------------------------------------------------------------------- /Api/core/inc/vl53l0x_api_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbryanmoore/VL53L0X_rasp_python/HEAD/Api/core/inc/vl53l0x_api_core.h -------------------------------------------------------------------------------- /Api/core/inc/vl53l0x_api_ranging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbryanmoore/VL53L0X_rasp_python/HEAD/Api/core/inc/vl53l0x_api_ranging.h -------------------------------------------------------------------------------- /Api/core/inc/vl53l0x_api_strings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbryanmoore/VL53L0X_rasp_python/HEAD/Api/core/inc/vl53l0x_api_strings.h -------------------------------------------------------------------------------- /Api/core/inc/vl53l0x_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbryanmoore/VL53L0X_rasp_python/HEAD/Api/core/inc/vl53l0x_def.h -------------------------------------------------------------------------------- /Api/core/inc/vl53l0x_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbryanmoore/VL53L0X_rasp_python/HEAD/Api/core/inc/vl53l0x_device.h -------------------------------------------------------------------------------- /Api/core/inc/vl53l0x_interrupt_threshold_settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbryanmoore/VL53L0X_rasp_python/HEAD/Api/core/inc/vl53l0x_interrupt_threshold_settings.h -------------------------------------------------------------------------------- /Api/core/inc/vl53l0x_tuning.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbryanmoore/VL53L0X_rasp_python/HEAD/Api/core/inc/vl53l0x_tuning.h -------------------------------------------------------------------------------- /Api/core/src/vl53l0x_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbryanmoore/VL53L0X_rasp_python/HEAD/Api/core/src/vl53l0x_api.c -------------------------------------------------------------------------------- /Api/core/src/vl53l0x_api.c.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbryanmoore/VL53L0X_rasp_python/HEAD/Api/core/src/vl53l0x_api.c.bak -------------------------------------------------------------------------------- /Api/core/src/vl53l0x_api_calibration.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbryanmoore/VL53L0X_rasp_python/HEAD/Api/core/src/vl53l0x_api_calibration.c -------------------------------------------------------------------------------- /Api/core/src/vl53l0x_api_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbryanmoore/VL53L0X_rasp_python/HEAD/Api/core/src/vl53l0x_api_core.c -------------------------------------------------------------------------------- /Api/core/src/vl53l0x_api_ranging.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbryanmoore/VL53L0X_rasp_python/HEAD/Api/core/src/vl53l0x_api_ranging.c -------------------------------------------------------------------------------- /Api/core/src/vl53l0x_api_strings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbryanmoore/VL53L0X_rasp_python/HEAD/Api/core/src/vl53l0x_api_strings.c -------------------------------------------------------------------------------- /Api/platform/inc/vl53l0x_i2c_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbryanmoore/VL53L0X_rasp_python/HEAD/Api/platform/inc/vl53l0x_i2c_platform.h -------------------------------------------------------------------------------- /Api/platform/inc/vl53l0x_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbryanmoore/VL53L0X_rasp_python/HEAD/Api/platform/inc/vl53l0x_platform.h -------------------------------------------------------------------------------- /Api/platform/inc/vl53l0x_platform_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbryanmoore/VL53L0X_rasp_python/HEAD/Api/platform/inc/vl53l0x_platform_log.h -------------------------------------------------------------------------------- /Api/platform/inc/vl53l0x_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbryanmoore/VL53L0X_rasp_python/HEAD/Api/platform/inc/vl53l0x_types.h -------------------------------------------------------------------------------- /Api/platform/src/.vl53l0x_i2c_win_serial_comms.c.swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbryanmoore/VL53L0X_rasp_python/HEAD/Api/platform/src/.vl53l0x_i2c_win_serial_comms.c.swp -------------------------------------------------------------------------------- /Api/platform/src/vl53l0x_i2c_win_serial_comms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbryanmoore/VL53L0X_rasp_python/HEAD/Api/platform/src/vl53l0x_i2c_win_serial_comms.c -------------------------------------------------------------------------------- /Api/platform/src/vl53l0x_platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbryanmoore/VL53L0X_rasp_python/HEAD/Api/platform/src/vl53l0x_platform.c -------------------------------------------------------------------------------- /Api/platform/src/vl53l0x_platform_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbryanmoore/VL53L0X_rasp_python/HEAD/Api/platform/src/vl53l0x_platform_log.c -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbryanmoore/VL53L0X_rasp_python/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbryanmoore/VL53L0X_rasp_python/HEAD/README.md -------------------------------------------------------------------------------- /VL53L0X_Mutli_Rpi3_bb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbryanmoore/VL53L0X_rasp_python/HEAD/VL53L0X_Mutli_Rpi3_bb.jpg -------------------------------------------------------------------------------- /VL53L0X_TCA9548A_Rpi3_bb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbryanmoore/VL53L0X_rasp_python/HEAD/VL53L0X_TCA9548A_Rpi3_bb.jpg -------------------------------------------------------------------------------- /platform/inc/vl53l0x_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbryanmoore/VL53L0X_rasp_python/HEAD/platform/inc/vl53l0x_platform.h -------------------------------------------------------------------------------- /platform/inc/vl53l0x_platform_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbryanmoore/VL53L0X_rasp_python/HEAD/platform/inc/vl53l0x_platform_log.h -------------------------------------------------------------------------------- /platform/inc/vl53l0x_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbryanmoore/VL53L0X_rasp_python/HEAD/platform/inc/vl53l0x_types.h -------------------------------------------------------------------------------- /platform/src/vl53l0x_platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbryanmoore/VL53L0X_rasp_python/HEAD/platform/src/vl53l0x_platform.c -------------------------------------------------------------------------------- /python/VL53L0X.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbryanmoore/VL53L0X_rasp_python/HEAD/python/VL53L0X.py -------------------------------------------------------------------------------- /python/VL53L0X_TCA9548A_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbryanmoore/VL53L0X_rasp_python/HEAD/python/VL53L0X_TCA9548A_example.py -------------------------------------------------------------------------------- /python/VL53L0X_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbryanmoore/VL53L0X_rasp_python/HEAD/python/VL53L0X_example.py -------------------------------------------------------------------------------- /python/VL53L0X_example_livegraph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbryanmoore/VL53L0X_rasp_python/HEAD/python/VL53L0X_example_livegraph.py -------------------------------------------------------------------------------- /python/VL53L0X_multi_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbryanmoore/VL53L0X_rasp_python/HEAD/python/VL53L0X_multi_example.py -------------------------------------------------------------------------------- /python_lib/vl53l0x_python.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbryanmoore/VL53L0X_rasp_python/HEAD/python_lib/vl53l0x_python.c --------------------------------------------------------------------------------