-
-
Notifications
You must be signed in to change notification settings - Fork 20
/
MAX31865.h
48 lines (36 loc) · 1.34 KB
/
MAX31865.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
#ifndef _MAX31865_H
#define _MAX31865_H
/*
Author: Nima Askari
WebSite: http://www.github.com/NimaLTD
Instagram: http://instagram.com/github.NimaLTD
Youtube: https://www.youtube.com/channel/UCUhY7qY1klJm1d2kulr9ckw
Version: 1.0.0
Reversion History:
(1.0.0)
First Release.
*/
#ifdef __cplusplus
extern "C" {
#endif
#include "gpio.h"
#include "spi.h"
#include <stdbool.h>
//#########################################################################################################################
typedef struct
{
GPIO_TypeDef *cs_gpio;
uint16_t cs_pin;
SPI_HandleTypeDef *spi;
uint8_t lock;
}Max31865_t;
//#########################################################################################################################
void Max31865_init(Max31865_t *max31865,SPI_HandleTypeDef *spi,GPIO_TypeDef *cs_gpio,uint16_t cs_pin,uint8_t numwires, uint8_t filterHz);
bool Max31865_readTempC(Max31865_t *max31865,float *readTemp);
bool Max31865_readTempF(Max31865_t *max31865,float *readTemp);
float Max31865_Filter(float newInput, float lastOutput, float efectiveFactor);
//#########################################################################################################################
#ifdef __cplusplus
}
#endif
#endif