├── .gitignore ├── CMakeLists.txt ├── Kconfig ├── LICENSE ├── README.md ├── component.mk ├── include └── vl53l0x.h └── vl53l0x.c /.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | *~ 3 | *.swp 4 | .DS_Store 5 | -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revk/ESP32-VL53L0X/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revk/ESP32-VL53L0X/HEAD/Kconfig -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revk/ESP32-VL53L0X/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revk/ESP32-VL53L0X/HEAD/README.md -------------------------------------------------------------------------------- /component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revk/ESP32-VL53L0X/HEAD/component.mk -------------------------------------------------------------------------------- /include/vl53l0x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revk/ESP32-VL53L0X/HEAD/include/vl53l0x.h -------------------------------------------------------------------------------- /vl53l0x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revk/ESP32-VL53L0X/HEAD/vl53l0x.c --------------------------------------------------------------------------------