├── .gitattributes ├── .gitignore ├── ISSUE_TEMPLATE.md ├── LICENSE.md ├── README.md ├── documents └── LIS2DH12 Datasheet.pdf ├── examples ├── Example10_TapDetection │ └── Example10_TapDetection.ino ├── Example1_BasicReadings │ └── Example1_BasicReadings.ino ├── Example2_Settings │ └── Example2_Settings.ino ├── Example3_ReadRaw │ └── Example3_ReadRaw.ino ├── Example4_TapDetection │ └── Example4_TapDetection.ino ├── Example5_LowestPower │ └── Example5_LowestPower.ino ├── Example6_AdvancedWire │ └── Example6_AdvancedWire.ino ├── Example7_SelfTest │ └── Example7_SelfTest.ino ├── Example8_MaxOutput │ └── Example8_MaxOutput.ino └── Example9_Interrupts │ └── Example9_Interrupts.ino ├── keywords.txt ├── library.properties └── src ├── SparkFun_LIS2DH12.cpp ├── SparkFun_LIS2DH12.h ├── lis2dh12_reg.cpp └── lis2dh12_reg.h /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/SparkFun_LIS2DH12_Arduino_Library/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/SparkFun_LIS2DH12_Arduino_Library/HEAD/.gitignore -------------------------------------------------------------------------------- /ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/SparkFun_LIS2DH12_Arduino_Library/HEAD/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/SparkFun_LIS2DH12_Arduino_Library/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/SparkFun_LIS2DH12_Arduino_Library/HEAD/README.md -------------------------------------------------------------------------------- /documents/LIS2DH12 Datasheet.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/SparkFun_LIS2DH12_Arduino_Library/HEAD/documents/LIS2DH12 Datasheet.pdf -------------------------------------------------------------------------------- /examples/Example10_TapDetection/Example10_TapDetection.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/SparkFun_LIS2DH12_Arduino_Library/HEAD/examples/Example10_TapDetection/Example10_TapDetection.ino -------------------------------------------------------------------------------- /examples/Example1_BasicReadings/Example1_BasicReadings.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/SparkFun_LIS2DH12_Arduino_Library/HEAD/examples/Example1_BasicReadings/Example1_BasicReadings.ino -------------------------------------------------------------------------------- /examples/Example2_Settings/Example2_Settings.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/SparkFun_LIS2DH12_Arduino_Library/HEAD/examples/Example2_Settings/Example2_Settings.ino -------------------------------------------------------------------------------- /examples/Example3_ReadRaw/Example3_ReadRaw.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/SparkFun_LIS2DH12_Arduino_Library/HEAD/examples/Example3_ReadRaw/Example3_ReadRaw.ino -------------------------------------------------------------------------------- /examples/Example4_TapDetection/Example4_TapDetection.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/SparkFun_LIS2DH12_Arduino_Library/HEAD/examples/Example4_TapDetection/Example4_TapDetection.ino -------------------------------------------------------------------------------- /examples/Example5_LowestPower/Example5_LowestPower.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/SparkFun_LIS2DH12_Arduino_Library/HEAD/examples/Example5_LowestPower/Example5_LowestPower.ino -------------------------------------------------------------------------------- /examples/Example6_AdvancedWire/Example6_AdvancedWire.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/SparkFun_LIS2DH12_Arduino_Library/HEAD/examples/Example6_AdvancedWire/Example6_AdvancedWire.ino -------------------------------------------------------------------------------- /examples/Example7_SelfTest/Example7_SelfTest.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/SparkFun_LIS2DH12_Arduino_Library/HEAD/examples/Example7_SelfTest/Example7_SelfTest.ino -------------------------------------------------------------------------------- /examples/Example8_MaxOutput/Example8_MaxOutput.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/SparkFun_LIS2DH12_Arduino_Library/HEAD/examples/Example8_MaxOutput/Example8_MaxOutput.ino -------------------------------------------------------------------------------- /examples/Example9_Interrupts/Example9_Interrupts.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/SparkFun_LIS2DH12_Arduino_Library/HEAD/examples/Example9_Interrupts/Example9_Interrupts.ino -------------------------------------------------------------------------------- /keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/SparkFun_LIS2DH12_Arduino_Library/HEAD/keywords.txt -------------------------------------------------------------------------------- /library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/SparkFun_LIS2DH12_Arduino_Library/HEAD/library.properties -------------------------------------------------------------------------------- /src/SparkFun_LIS2DH12.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/SparkFun_LIS2DH12_Arduino_Library/HEAD/src/SparkFun_LIS2DH12.cpp -------------------------------------------------------------------------------- /src/SparkFun_LIS2DH12.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/SparkFun_LIS2DH12_Arduino_Library/HEAD/src/SparkFun_LIS2DH12.h -------------------------------------------------------------------------------- /src/lis2dh12_reg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/SparkFun_LIS2DH12_Arduino_Library/HEAD/src/lis2dh12_reg.cpp -------------------------------------------------------------------------------- /src/lis2dh12_reg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/SparkFun_LIS2DH12_Arduino_Library/HEAD/src/lis2dh12_reg.h --------------------------------------------------------------------------------