GY-63_MS5611/libraries/MAX31855_RT/MAX31855.h

117 lines
3.2 KiB
C
Raw Normal View History

2021-01-29 06:31:58 -05:00
#pragma once
//
// FILE: MAX31855.h
// AUTHOR: Rob Tillaart
2021-07-05 02:37:20 -04:00
// VERSION: 0.2.5
2021-01-29 06:31:58 -05:00
// PURPOSE: Arduino library for MAX31855 chip for K type thermocouple
// DATE: 2014-01-01
// URL: https://github.com/RobTillaart/MAX31855_RT
// http://forum.arduino.cc/index.php?topic=208061
2021-07-05 02:37:20 -04:00
// Breakout board
2021-01-29 06:31:58 -05:00
//
// +---------+
// Vin | o |
// 3Vo | o |
// GND | o O | Thermocouple
// D0 | o O | Thermocouple
// CS | o |
// CLK | o |
// +---------+
2021-07-05 02:37:20 -04:00
2021-01-29 06:31:58 -05:00
#include "Arduino.h"
#include "SPI.h"
2021-07-05 02:37:20 -04:00
#define MAX31855_VERSION (F("0.2.5"))
2021-01-29 06:31:58 -05:00
#define MAX31855_NO_TEMPERATURE -999
// STATE constants returnd by read()
#define STATUS_OK 0x00
#define STATUS_OPEN_CIRCUIT 0x01
#define STATUS_SHORT_TO_GND 0x02
#define STATUS_SHORT_TO_VCC 0x04
#define STATUS_ERROR 0x07
#define STATUS_NOREAD 0x80
#define STATUS_NO_COMMUNICATION 0x81
// Thermocouples working is based upon Seebeck effect.
// Different TC have a different Seebeck Coefficient (µV/°C)
// See http://www.analog.com/library/analogDialogue/archives/44-10/thermocouple.html
//
// As the MAX31855 is designed for K type sensors, one can calculate
// the factor needed to convert other sensors measurements.
// NOTE: this is only a linear approximation.
//
// Seebeck Coefficients (sensitivity) from the MAX31855 datasheet page 8
// to be used in setSeebeckCoefficient()
//
// TYPE COEFFICIENT
#define E_TC 76.373
#define J_TC 57.953
#define K_TC 41.276
#define N_TC 36.256
#define R_TC 10.506
#define S_TC 9.587
#define T_TC 52.18
class MAX31855
{
public:
// HW SPI
MAX31855(uint8_t CS);
// SW SPI
MAX31855(uint8_t SCLK, uint8_t CS, uint8_t MISO);
void begin();
2021-07-05 02:37:20 -04:00
// returns state - bit field: 0 = STATUS_OK
2021-01-29 06:31:58 -05:00
uint8_t read();
float getInternal(void) const { return _internal; }
float getTemperature(void);
uint8_t getStatus(void) const { return _status; };
inline bool openCircuit() { return _status == STATUS_OPEN_CIRCUIT; };
inline bool shortToGND() { return _status == STATUS_SHORT_TO_GND; };
inline bool shortToVCC() { return _status == STATUS_SHORT_TO_VCC; };
inline bool genericError() { return _status == STATUS_ERROR; };
inline bool noRead() { return _status == STATUS_NOREAD; };
inline bool noCommunication() { return _status == STATUS_NO_COMMUNICATION; };
2021-07-05 02:37:20 -04:00
// use offset to calibrate the TC.
2021-01-29 06:31:58 -05:00
void setOffset(const float t) { _offset = t; };
float getOffset() const { return _offset; };
2021-07-05 02:37:20 -04:00
// set the above E_TC (etc) Seebeck Coefficients
2021-01-29 06:31:58 -05:00
// one can also set your own optimized values.
void setSeebeckCoefficient(const float SC) { _SC = SC; };
float getSeebeckCoefficient() const { return _SC; };
uint32_t lastRead() { return _lastRead; };
uint32_t getRawData() { return _rawData;};
2021-07-05 02:37:20 -04:00
2021-01-29 06:31:58 -05:00
private:
uint32_t _read();
uint8_t _status;
float _internal;
float _temperature;
float _offset;
float _SC;
uint32_t _lastRead;
uint32_t _rawData;
bool _hwSPI;
uint8_t _sclk;
uint8_t _miso;
uint8_t _cs;
};
2021-07-05 02:37:20 -04:00
2021-01-29 06:31:58 -05:00
// -- END OF FILE --