GY-63_MS5611/libraries/MAX31850/MAX31850.h

78 lines
1.5 KiB
C
Raw Normal View History

2022-11-16 14:52:35 -05:00
#pragma once
//
// FILE: MAX31850.h
2023-11-12 04:19:53 -05:00
// AUTHOR: Rob Tillaart
2024-01-05 03:52:07 -05:00
// VERSION: 0.1.4
2022-11-16 14:52:35 -05:00
// DATE: 2021-06-03
2024-01-05 03:52:07 -05:00
// PURPOSE: Arduino library for the MAX31850 thermocouple temperature sensor.
// URL: https://github.com/RobTillaart/MAX31850
2022-11-16 14:52:35 -05:00
2024-01-05 03:52:07 -05:00
#define MAX31850_LIB_VERSION (F("0.1.4"))
2022-11-16 14:52:35 -05:00
#include "Arduino.h"
#include "OneWire.h"
// ERROR CODES
#define MAX31850_OK 0
#define MAX31850_ERR_SHORT_OPEN 1
#define MAX31850_ERR_SHORT_GND 2
#define MAX31850_ERR_SHORT_VDD 4
typedef uint8_t DeviceAddress[8];
typedef uint8_t ScratchPad[9];
class MAX31850
{
public:
explicit MAX31850(OneWire * oneWire);
2023-01-23 09:19:15 -05:00
bool begin(uint8_t retries = 3);
bool getAddress(uint8_t * buffer);
2022-11-16 14:52:35 -05:00
void requestTemperatures(void);
bool isConversionComplete(void);
// call read to get new measurement.
float read(void);
// Call read first!!
float getTempTC(void);
2023-11-12 04:19:53 -05:00
float getTempInternal(void);
2022-11-16 14:52:35 -05:00
uint8_t getErrorCode();
// TODO
uint8_t getAddressPins();
2023-01-23 09:19:15 -05:00
// type is a char from E J K N R S T (lowercase will be converted)
bool setTypeTC(char typeTC = 'K'); // K is most used
char getTypeTC();
2022-11-16 14:52:35 -05:00
protected:
void readScratchPad(uint8_t *, uint8_t);
uint8_t _deviceAddress[8];
OneWire* _oneWire;
bool _addresFound;
char _typeTC;
float _TCTemp;
float _internalTemp;
uint8_t _errorBits;
bool _failFlag;
uint8_t _addrBits;
};
class MAX31851 : public MAX31850
{
public:
MAX31851(OneWire * onewire);
};
// -- END OF FILE --