├── LICENSE ├── README.md ├── doc ├── LLv3-I2C-Guidelines.pdf └── Umanx_3_White_Papers.pdf ├── examples ├── v3 │ ├── GetDistanceI2c │ │ └── GetDistanceI2c.ino │ ├── GetDistancePwm │ │ └── GetDistancePwm.ino │ └── ShortRangeHighSpeed │ │ └── ShortRangeHighSpeed.ino ├── v3HP │ ├── v3HP_I2C │ │ └── v3HP_I2C.ino │ ├── v3HP_MONITOR │ │ └── v3HP_MONITOR.ino │ └── v3HP_PWM │ │ └── v3HP_PWM.ino └── v4LED │ ├── v4LED │ └── v4LED.ino │ ├── v4LED_fast │ └── v4LED_fast.ino │ └── v4LED_lowpower │ └── v4LED_lowpower.ino ├── keywords.txt ├── library.properties └── src ├── LIDARLite.cpp ├── LIDARLite.h ├── LIDARLite_v3HP.cpp ├── LIDARLite_v3HP.h ├── LIDARLite_v4LED.cpp └── LIDARLite_v4LED.h /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garmin/LIDARLite_Arduino_Library/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garmin/LIDARLite_Arduino_Library/HEAD/README.md -------------------------------------------------------------------------------- /doc/LLv3-I2C-Guidelines.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garmin/LIDARLite_Arduino_Library/HEAD/doc/LLv3-I2C-Guidelines.pdf -------------------------------------------------------------------------------- /doc/Umanx_3_White_Papers.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garmin/LIDARLite_Arduino_Library/HEAD/doc/Umanx_3_White_Papers.pdf -------------------------------------------------------------------------------- /examples/v3/GetDistanceI2c/GetDistanceI2c.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garmin/LIDARLite_Arduino_Library/HEAD/examples/v3/GetDistanceI2c/GetDistanceI2c.ino -------------------------------------------------------------------------------- /examples/v3/GetDistancePwm/GetDistancePwm.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garmin/LIDARLite_Arduino_Library/HEAD/examples/v3/GetDistancePwm/GetDistancePwm.ino -------------------------------------------------------------------------------- /examples/v3/ShortRangeHighSpeed/ShortRangeHighSpeed.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garmin/LIDARLite_Arduino_Library/HEAD/examples/v3/ShortRangeHighSpeed/ShortRangeHighSpeed.ino -------------------------------------------------------------------------------- /examples/v3HP/v3HP_I2C/v3HP_I2C.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garmin/LIDARLite_Arduino_Library/HEAD/examples/v3HP/v3HP_I2C/v3HP_I2C.ino -------------------------------------------------------------------------------- /examples/v3HP/v3HP_MONITOR/v3HP_MONITOR.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garmin/LIDARLite_Arduino_Library/HEAD/examples/v3HP/v3HP_MONITOR/v3HP_MONITOR.ino -------------------------------------------------------------------------------- /examples/v3HP/v3HP_PWM/v3HP_PWM.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garmin/LIDARLite_Arduino_Library/HEAD/examples/v3HP/v3HP_PWM/v3HP_PWM.ino -------------------------------------------------------------------------------- /examples/v4LED/v4LED/v4LED.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garmin/LIDARLite_Arduino_Library/HEAD/examples/v4LED/v4LED/v4LED.ino -------------------------------------------------------------------------------- /examples/v4LED/v4LED_fast/v4LED_fast.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garmin/LIDARLite_Arduino_Library/HEAD/examples/v4LED/v4LED_fast/v4LED_fast.ino -------------------------------------------------------------------------------- /examples/v4LED/v4LED_lowpower/v4LED_lowpower.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garmin/LIDARLite_Arduino_Library/HEAD/examples/v4LED/v4LED_lowpower/v4LED_lowpower.ino -------------------------------------------------------------------------------- /keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garmin/LIDARLite_Arduino_Library/HEAD/keywords.txt -------------------------------------------------------------------------------- /library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garmin/LIDARLite_Arduino_Library/HEAD/library.properties -------------------------------------------------------------------------------- /src/LIDARLite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garmin/LIDARLite_Arduino_Library/HEAD/src/LIDARLite.cpp -------------------------------------------------------------------------------- /src/LIDARLite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garmin/LIDARLite_Arduino_Library/HEAD/src/LIDARLite.h -------------------------------------------------------------------------------- /src/LIDARLite_v3HP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garmin/LIDARLite_Arduino_Library/HEAD/src/LIDARLite_v3HP.cpp -------------------------------------------------------------------------------- /src/LIDARLite_v3HP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garmin/LIDARLite_Arduino_Library/HEAD/src/LIDARLite_v3HP.h -------------------------------------------------------------------------------- /src/LIDARLite_v4LED.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garmin/LIDARLite_Arduino_Library/HEAD/src/LIDARLite_v4LED.cpp -------------------------------------------------------------------------------- /src/LIDARLite_v4LED.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garmin/LIDARLite_Arduino_Library/HEAD/src/LIDARLite_v4LED.h --------------------------------------------------------------------------------