├── .github ├── ISSUE_TEMPLATE.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ └── githubci.yml ├── .gitignore ├── Doxyfile ├── README.md ├── examples ├── vl53l0x │ └── vl53l0x.ino ├── vl53l0x_Interrupt │ └── vl53l0x_Interrupt.ino ├── vl53l0x_continuous │ └── vl53l0x_continuous.ino ├── vl53l0x_dual │ └── vl53l0x_dual.ino ├── vl53l0x_multi_extended │ └── vl53l0x_multi_extended.ino └── vl53l0x_oled │ ├── .leonardo.test.skip │ └── vl53l0x_oled.ino ├── keywords.txt ├── library.properties └── src ├── Adafruit_VL53L0X.cpp ├── Adafruit_VL53L0X.h ├── core └── src │ ├── vl53l0x_api.cpp │ ├── vl53l0x_api_calibration.cpp │ ├── vl53l0x_api_core.cpp │ ├── vl53l0x_api_ranging.cpp │ └── vl53l0x_api_strings.cpp ├── platform └── src │ ├── vl53l0x_i2c_comms.cpp │ └── vl53l0x_platform.cpp ├── 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_i2c_platform.h ├── vl53l0x_interrupt_threshold_settings.h ├── vl53l0x_platform.h ├── vl53l0x_platform_log.h ├── vl53l0x_tuning.h └── vl53l0x_types.h /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_VL53L0X/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_VL53L0X/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/githubci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_VL53L0X/HEAD/.github/workflows/githubci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_VL53L0X/HEAD/.gitignore -------------------------------------------------------------------------------- /Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_VL53L0X/HEAD/Doxyfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_VL53L0X/HEAD/README.md -------------------------------------------------------------------------------- /examples/vl53l0x/vl53l0x.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_VL53L0X/HEAD/examples/vl53l0x/vl53l0x.ino -------------------------------------------------------------------------------- /examples/vl53l0x_Interrupt/vl53l0x_Interrupt.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_VL53L0X/HEAD/examples/vl53l0x_Interrupt/vl53l0x_Interrupt.ino -------------------------------------------------------------------------------- /examples/vl53l0x_continuous/vl53l0x_continuous.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_VL53L0X/HEAD/examples/vl53l0x_continuous/vl53l0x_continuous.ino -------------------------------------------------------------------------------- /examples/vl53l0x_dual/vl53l0x_dual.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_VL53L0X/HEAD/examples/vl53l0x_dual/vl53l0x_dual.ino -------------------------------------------------------------------------------- /examples/vl53l0x_multi_extended/vl53l0x_multi_extended.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_VL53L0X/HEAD/examples/vl53l0x_multi_extended/vl53l0x_multi_extended.ino -------------------------------------------------------------------------------- /examples/vl53l0x_oled/.leonardo.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/vl53l0x_oled/vl53l0x_oled.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_VL53L0X/HEAD/examples/vl53l0x_oled/vl53l0x_oled.ino -------------------------------------------------------------------------------- /keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_VL53L0X/HEAD/keywords.txt -------------------------------------------------------------------------------- /library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_VL53L0X/HEAD/library.properties -------------------------------------------------------------------------------- /src/Adafruit_VL53L0X.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_VL53L0X/HEAD/src/Adafruit_VL53L0X.cpp -------------------------------------------------------------------------------- /src/Adafruit_VL53L0X.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_VL53L0X/HEAD/src/Adafruit_VL53L0X.h -------------------------------------------------------------------------------- /src/core/src/vl53l0x_api.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_VL53L0X/HEAD/src/core/src/vl53l0x_api.cpp -------------------------------------------------------------------------------- /src/core/src/vl53l0x_api_calibration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_VL53L0X/HEAD/src/core/src/vl53l0x_api_calibration.cpp -------------------------------------------------------------------------------- /src/core/src/vl53l0x_api_core.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_VL53L0X/HEAD/src/core/src/vl53l0x_api_core.cpp -------------------------------------------------------------------------------- /src/core/src/vl53l0x_api_ranging.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_VL53L0X/HEAD/src/core/src/vl53l0x_api_ranging.cpp -------------------------------------------------------------------------------- /src/core/src/vl53l0x_api_strings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_VL53L0X/HEAD/src/core/src/vl53l0x_api_strings.cpp -------------------------------------------------------------------------------- /src/platform/src/vl53l0x_i2c_comms.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_VL53L0X/HEAD/src/platform/src/vl53l0x_i2c_comms.cpp -------------------------------------------------------------------------------- /src/platform/src/vl53l0x_platform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_VL53L0X/HEAD/src/platform/src/vl53l0x_platform.cpp -------------------------------------------------------------------------------- /src/vl53l0x_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_VL53L0X/HEAD/src/vl53l0x_api.h -------------------------------------------------------------------------------- /src/vl53l0x_api_calibration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_VL53L0X/HEAD/src/vl53l0x_api_calibration.h -------------------------------------------------------------------------------- /src/vl53l0x_api_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_VL53L0X/HEAD/src/vl53l0x_api_core.h -------------------------------------------------------------------------------- /src/vl53l0x_api_ranging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_VL53L0X/HEAD/src/vl53l0x_api_ranging.h -------------------------------------------------------------------------------- /src/vl53l0x_api_strings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_VL53L0X/HEAD/src/vl53l0x_api_strings.h -------------------------------------------------------------------------------- /src/vl53l0x_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_VL53L0X/HEAD/src/vl53l0x_def.h -------------------------------------------------------------------------------- /src/vl53l0x_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_VL53L0X/HEAD/src/vl53l0x_device.h -------------------------------------------------------------------------------- /src/vl53l0x_i2c_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_VL53L0X/HEAD/src/vl53l0x_i2c_platform.h -------------------------------------------------------------------------------- /src/vl53l0x_interrupt_threshold_settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_VL53L0X/HEAD/src/vl53l0x_interrupt_threshold_settings.h -------------------------------------------------------------------------------- /src/vl53l0x_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_VL53L0X/HEAD/src/vl53l0x_platform.h -------------------------------------------------------------------------------- /src/vl53l0x_platform_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_VL53L0X/HEAD/src/vl53l0x_platform_log.h -------------------------------------------------------------------------------- /src/vl53l0x_tuning.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_VL53L0X/HEAD/src/vl53l0x_tuning.h -------------------------------------------------------------------------------- /src/vl53l0x_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_VL53L0X/HEAD/src/vl53l0x_types.h --------------------------------------------------------------------------------