File tree Expand file tree Collapse file tree 5 files changed +13
-7
lines changed
Expand file tree Collapse file tree 5 files changed +13
-7
lines changed Original file line number Diff line number Diff line change @@ -6,12 +6,14 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/)
66and this project adheres to [ Semantic Versioning] ( http://semver.org/ ) .
77
88
9+ ## [ 0.3.2] - 2024-06-03
10+ - add support for ARDUINO_ARCH_MBED
11+
912## [ 0.3.1] - 2024-04-09
1013- update GitHub actions
1114- add array example
1215- minor edits
1316
14-
1517## [ 0.3.0] - 2024-01-19
1618- Fix #9 , improve handling SPI dependency.
1719
Original file line number Diff line number Diff line change 11//
22// FILE: MAX6675.cpp
33// AUTHOR: Rob Tillaart
4- // VERSION: 0.3.1
4+ // VERSION: 0.3.2
55// PURPOSE: Arduino library for MAX6675 chip for K type thermocouple
66// DATE: 2022-01-11
77// URL: https://github.com/RobTillaart/MAX6675
Original file line number Diff line number Diff line change 22//
33// FILE: MAX6675.h
44// AUTHOR: Rob Tillaart
5- // VERSION: 0.3.1
5+ // VERSION: 0.3.2
66// PURPOSE: Arduino library for MAX6675 chip for K type thermocouple
77// DATE: 2022-01-12
88// URL: https://github.com/RobTillaart/MAX6675
2323#include " SPI.h"
2424
2525
26- #define MAX6675_LIB_VERSION (F(" 0.3.1" ))
26+ #define MAX6675_LIB_VERSION (F(" 0.3.2" ))
27+
2728
2829#ifndef __SPI_CLASS__
29- #if defined(ARDUINO_ARCH_RP2040)
30+ // MBED must be tested before RP2040
31+ #if defined(ARDUINO_ARCH_MBED)
32+ #define __SPI_CLASS__ SPIClass
33+ #elif defined(ARDUINO_ARCH_RP2040)
3034 #define __SPI_CLASS__ SPIClassRP2040
3135 #else
3236 #define __SPI_CLASS__ SPIClass
Original file line number Diff line number Diff line change 1515 "type" : " git" ,
1616 "url" : " https://github.com/RobTillaart/MAX6675"
1717 },
18- "version" : " 0.3.1 " ,
18+ "version" : " 0.3.2 " ,
1919 "license" : " MIT" ,
2020 "frameworks" : " *" ,
2121 "platforms" : " *" ,
Original file line number Diff line number Diff line change 11name =MAX6675
2- version =0.3.1
2+ version =0.3.2
33author =Rob Tillaart <rob.tillaart@gmail.com>
44maintainer =Rob Tillaart <rob.tillaart@gmail.com>
55sentence =Arduino library for MAX6675 chip for K type thermocouple.
You can’t perform that action at this time.
0 commit comments