├── .github ├── ISSUE_TEMPLATE.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ └── githubci.yml ├── Adafruit_LIS3MDL.cpp ├── Adafruit_LIS3MDL.h ├── README.md ├── assets └── board.jpg ├── code-of-conduct.md ├── examples └── lis3mdl_demo │ └── lis3mdl_demo.ino ├── library.properties └── license.txt /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_LIS3MDL/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_LIS3MDL/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/githubci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_LIS3MDL/HEAD/.github/workflows/githubci.yml -------------------------------------------------------------------------------- /Adafruit_LIS3MDL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_LIS3MDL/HEAD/Adafruit_LIS3MDL.cpp -------------------------------------------------------------------------------- /Adafruit_LIS3MDL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_LIS3MDL/HEAD/Adafruit_LIS3MDL.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_LIS3MDL/HEAD/README.md -------------------------------------------------------------------------------- /assets/board.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_LIS3MDL/HEAD/assets/board.jpg -------------------------------------------------------------------------------- /code-of-conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_LIS3MDL/HEAD/code-of-conduct.md -------------------------------------------------------------------------------- /examples/lis3mdl_demo/lis3mdl_demo.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_LIS3MDL/HEAD/examples/lis3mdl_demo/lis3mdl_demo.ino -------------------------------------------------------------------------------- /library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_LIS3MDL/HEAD/library.properties -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_LIS3MDL/HEAD/license.txt --------------------------------------------------------------------------------