├── .github ├── ISSUE_TEMPLATE.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ └── githubci.yml ├── Adafruit_MAX31855.cpp ├── Adafruit_MAX31855.h ├── README.md ├── examples ├── lcdthermocouple │ └── lcdthermocouple.ino └── serialthermocouple │ └── serialthermocouple.ino ├── keywords.txt ├── library.properties └── license.txt /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit-MAX31855-library/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit-MAX31855-library/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/githubci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit-MAX31855-library/HEAD/.github/workflows/githubci.yml -------------------------------------------------------------------------------- /Adafruit_MAX31855.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit-MAX31855-library/HEAD/Adafruit_MAX31855.cpp -------------------------------------------------------------------------------- /Adafruit_MAX31855.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit-MAX31855-library/HEAD/Adafruit_MAX31855.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit-MAX31855-library/HEAD/README.md -------------------------------------------------------------------------------- /examples/lcdthermocouple/lcdthermocouple.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit-MAX31855-library/HEAD/examples/lcdthermocouple/lcdthermocouple.ino -------------------------------------------------------------------------------- /examples/serialthermocouple/serialthermocouple.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit-MAX31855-library/HEAD/examples/serialthermocouple/serialthermocouple.ino -------------------------------------------------------------------------------- /keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit-MAX31855-library/HEAD/keywords.txt -------------------------------------------------------------------------------- /library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit-MAX31855-library/HEAD/library.properties -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit-MAX31855-library/HEAD/license.txt --------------------------------------------------------------------------------