mirror of
https://github.com/RobTillaart/Arduino.git
synced 2024-10-03 18:09:02 -04:00
0.6.1 MAX31855_RT
This commit is contained in:
parent
c30131f354
commit
fb0e49fbea
@ -6,6 +6,9 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/)
|
||||
and this project adheres to [Semantic Versioning](http://semver.org/).
|
||||
|
||||
|
||||
## [0.6.1] - 2024-06-03
|
||||
- add support for ARDUINO_ARCH_MBED
|
||||
|
||||
## [0.6.0] - 2024-01-19
|
||||
- Fix #31, improve SPI dependency
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
//
|
||||
// FILE: MAX31855.cpp
|
||||
// AUTHOR: Rob Tillaart
|
||||
// VERSION: 0.6.0
|
||||
// VERSION: 0.6.1
|
||||
// PURPOSE: Arduino library for MAX31855 chip for K type thermocouple
|
||||
// DATE: 2014-01-01
|
||||
// URL: https://github.com/RobTillaart/MAX31855_RT
|
||||
|
@ -2,7 +2,7 @@
|
||||
//
|
||||
// FILE: MAX31855.h
|
||||
// AUTHOR: Rob Tillaart
|
||||
// VERSION: 0.6.0
|
||||
// VERSION: 0.6.1
|
||||
// PURPOSE: Arduino library for MAX31855 chip for K type thermocouple
|
||||
// DATE: 2014-01-01
|
||||
// URL: https://github.com/RobTillaart/MAX31855_RT
|
||||
@ -25,10 +25,14 @@
|
||||
#include "SPI.h"
|
||||
|
||||
|
||||
#define MAX31855_VERSION (F("0.6.0"))
|
||||
#define MAX31855_VERSION (F("0.6.1"))
|
||||
|
||||
|
||||
#ifndef __SPI_CLASS__
|
||||
#if defined(ARDUINO_ARCH_RP2040)
|
||||
// MBED must be tested before RP2040
|
||||
#if defined(ARDUINO_ARCH_MBED)
|
||||
#define __SPI_CLASS__ SPIClass
|
||||
#elif defined(ARDUINO_ARCH_RP2040)
|
||||
#define __SPI_CLASS__ SPIClassRP2040
|
||||
#else
|
||||
#define __SPI_CLASS__ SPIClass
|
||||
|
@ -15,7 +15,7 @@
|
||||
"type": "git",
|
||||
"url": "https://github.com/RobTillaart/MAX31855_RT"
|
||||
},
|
||||
"version": "0.6.0",
|
||||
"version": "0.6.1",
|
||||
"license": "MIT",
|
||||
"frameworks": "*",
|
||||
"platforms": "*",
|
||||
|
@ -1,5 +1,5 @@
|
||||
name=MAX31855_RT
|
||||
version=0.6.0
|
||||
version=0.6.1
|
||||
author=Rob Tillaart <rob.tillaart@gmail.com>
|
||||
maintainer=Rob Tillaart <rob.tillaart@gmail.com>
|
||||
sentence=Arduino library for MAX31855 chip for K type thermocouple.
|
||||
|
Loading…
Reference in New Issue
Block a user