├── .github └── workflows │ ├── add_issue_to_project.yml │ └── compile-sketch.yml ├── LICENSE.md ├── README.md ├── documents ├── um2884-a-guide-to-using-the-vl53l5cx.pdf ├── um2887-software-integration-guide.pdf └── vl53l5cx.pdf ├── examples ├── Example1_DistanceArray │ └── Example1_DistanceArray.ino ├── Example2_FastStartup │ └── Example2_FastStartup.ino ├── Example3_SetFrequency │ └── Example3_SetFrequency.ino ├── Example4_MaxOutput │ └── Example4_MaxOutput.ino ├── Example5_AdvancedI2C │ └── Example5_AdvancedI2C.ino ├── Example6_AdvancedSettings │ └── Example6_AdvancedSettings.ino ├── Example7_Interrupts │ └── Example7_Interrupts.ino ├── Example8_SetAddress │ └── Example8_SetAddress.ino └── Example9_TwoSensors │ └── Example9_TwoSensors.ino ├── keywords.txt ├── library.properties ├── processingApp └── SparkFun_VL53L5CX_3D_Depth_Map │ └── SparkFun_VL53L5CX_3D_Depth_Map.pde └── src ├── SparkFun_VL53L5CX_IO.cpp ├── SparkFun_VL53L5CX_IO.h ├── SparkFun_VL53L5CX_Library.cpp ├── SparkFun_VL53L5CX_Library.h ├── SparkFun_VL53L5CX_Library_Constants.h ├── platform.cpp ├── platform.h ├── vl53l5cx_api.cpp ├── vl53l5cx_api.h ├── vl53l5cx_buffers.h ├── vl53l5cx_plugin_detection_thresholds.cpp ├── vl53l5cx_plugin_detection_thresholds.h ├── vl53l5cx_plugin_motion_indicator.cpp ├── vl53l5cx_plugin_motion_indicator.h ├── vl53l5cx_plugin_xtalk.cpp └── vl53l5cx_plugin_xtalk.h /.github/workflows/add_issue_to_project.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/SparkFun_VL53L5CX_Arduino_Library/HEAD/.github/workflows/add_issue_to_project.yml -------------------------------------------------------------------------------- /.github/workflows/compile-sketch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/SparkFun_VL53L5CX_Arduino_Library/HEAD/.github/workflows/compile-sketch.yml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/SparkFun_VL53L5CX_Arduino_Library/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/SparkFun_VL53L5CX_Arduino_Library/HEAD/README.md -------------------------------------------------------------------------------- /documents/um2884-a-guide-to-using-the-vl53l5cx.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/SparkFun_VL53L5CX_Arduino_Library/HEAD/documents/um2884-a-guide-to-using-the-vl53l5cx.pdf -------------------------------------------------------------------------------- /documents/um2887-software-integration-guide.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/SparkFun_VL53L5CX_Arduino_Library/HEAD/documents/um2887-software-integration-guide.pdf -------------------------------------------------------------------------------- /documents/vl53l5cx.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/SparkFun_VL53L5CX_Arduino_Library/HEAD/documents/vl53l5cx.pdf -------------------------------------------------------------------------------- /examples/Example1_DistanceArray/Example1_DistanceArray.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/SparkFun_VL53L5CX_Arduino_Library/HEAD/examples/Example1_DistanceArray/Example1_DistanceArray.ino -------------------------------------------------------------------------------- /examples/Example2_FastStartup/Example2_FastStartup.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/SparkFun_VL53L5CX_Arduino_Library/HEAD/examples/Example2_FastStartup/Example2_FastStartup.ino -------------------------------------------------------------------------------- /examples/Example3_SetFrequency/Example3_SetFrequency.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/SparkFun_VL53L5CX_Arduino_Library/HEAD/examples/Example3_SetFrequency/Example3_SetFrequency.ino -------------------------------------------------------------------------------- /examples/Example4_MaxOutput/Example4_MaxOutput.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/SparkFun_VL53L5CX_Arduino_Library/HEAD/examples/Example4_MaxOutput/Example4_MaxOutput.ino -------------------------------------------------------------------------------- /examples/Example5_AdvancedI2C/Example5_AdvancedI2C.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/SparkFun_VL53L5CX_Arduino_Library/HEAD/examples/Example5_AdvancedI2C/Example5_AdvancedI2C.ino -------------------------------------------------------------------------------- /examples/Example6_AdvancedSettings/Example6_AdvancedSettings.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/SparkFun_VL53L5CX_Arduino_Library/HEAD/examples/Example6_AdvancedSettings/Example6_AdvancedSettings.ino -------------------------------------------------------------------------------- /examples/Example7_Interrupts/Example7_Interrupts.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/SparkFun_VL53L5CX_Arduino_Library/HEAD/examples/Example7_Interrupts/Example7_Interrupts.ino -------------------------------------------------------------------------------- /examples/Example8_SetAddress/Example8_SetAddress.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/SparkFun_VL53L5CX_Arduino_Library/HEAD/examples/Example8_SetAddress/Example8_SetAddress.ino -------------------------------------------------------------------------------- /examples/Example9_TwoSensors/Example9_TwoSensors.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/SparkFun_VL53L5CX_Arduino_Library/HEAD/examples/Example9_TwoSensors/Example9_TwoSensors.ino -------------------------------------------------------------------------------- /keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/SparkFun_VL53L5CX_Arduino_Library/HEAD/keywords.txt -------------------------------------------------------------------------------- /library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/SparkFun_VL53L5CX_Arduino_Library/HEAD/library.properties -------------------------------------------------------------------------------- /processingApp/SparkFun_VL53L5CX_3D_Depth_Map/SparkFun_VL53L5CX_3D_Depth_Map.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/SparkFun_VL53L5CX_Arduino_Library/HEAD/processingApp/SparkFun_VL53L5CX_3D_Depth_Map/SparkFun_VL53L5CX_3D_Depth_Map.pde -------------------------------------------------------------------------------- /src/SparkFun_VL53L5CX_IO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/SparkFun_VL53L5CX_Arduino_Library/HEAD/src/SparkFun_VL53L5CX_IO.cpp -------------------------------------------------------------------------------- /src/SparkFun_VL53L5CX_IO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/SparkFun_VL53L5CX_Arduino_Library/HEAD/src/SparkFun_VL53L5CX_IO.h -------------------------------------------------------------------------------- /src/SparkFun_VL53L5CX_Library.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/SparkFun_VL53L5CX_Arduino_Library/HEAD/src/SparkFun_VL53L5CX_Library.cpp -------------------------------------------------------------------------------- /src/SparkFun_VL53L5CX_Library.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/SparkFun_VL53L5CX_Arduino_Library/HEAD/src/SparkFun_VL53L5CX_Library.h -------------------------------------------------------------------------------- /src/SparkFun_VL53L5CX_Library_Constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/SparkFun_VL53L5CX_Arduino_Library/HEAD/src/SparkFun_VL53L5CX_Library_Constants.h -------------------------------------------------------------------------------- /src/platform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/SparkFun_VL53L5CX_Arduino_Library/HEAD/src/platform.cpp -------------------------------------------------------------------------------- /src/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/SparkFun_VL53L5CX_Arduino_Library/HEAD/src/platform.h -------------------------------------------------------------------------------- /src/vl53l5cx_api.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/SparkFun_VL53L5CX_Arduino_Library/HEAD/src/vl53l5cx_api.cpp -------------------------------------------------------------------------------- /src/vl53l5cx_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/SparkFun_VL53L5CX_Arduino_Library/HEAD/src/vl53l5cx_api.h -------------------------------------------------------------------------------- /src/vl53l5cx_buffers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/SparkFun_VL53L5CX_Arduino_Library/HEAD/src/vl53l5cx_buffers.h -------------------------------------------------------------------------------- /src/vl53l5cx_plugin_detection_thresholds.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/SparkFun_VL53L5CX_Arduino_Library/HEAD/src/vl53l5cx_plugin_detection_thresholds.cpp -------------------------------------------------------------------------------- /src/vl53l5cx_plugin_detection_thresholds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/SparkFun_VL53L5CX_Arduino_Library/HEAD/src/vl53l5cx_plugin_detection_thresholds.h -------------------------------------------------------------------------------- /src/vl53l5cx_plugin_motion_indicator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/SparkFun_VL53L5CX_Arduino_Library/HEAD/src/vl53l5cx_plugin_motion_indicator.cpp -------------------------------------------------------------------------------- /src/vl53l5cx_plugin_motion_indicator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/SparkFun_VL53L5CX_Arduino_Library/HEAD/src/vl53l5cx_plugin_motion_indicator.h -------------------------------------------------------------------------------- /src/vl53l5cx_plugin_xtalk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/SparkFun_VL53L5CX_Arduino_Library/HEAD/src/vl53l5cx_plugin_xtalk.cpp -------------------------------------------------------------------------------- /src/vl53l5cx_plugin_xtalk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/SparkFun_VL53L5CX_Arduino_Library/HEAD/src/vl53l5cx_plugin_xtalk.h --------------------------------------------------------------------------------