Files @ 6cc8fa5ae0f6
Branch filter:

Location: therm-ng/inc/tempsense.h - annotation

Ethan Zonca
Temp reading finally working!
#ifndef TEMPSENSE_H
#define TEMPSENSE_H


#define TEMPSENSE_MAX_CS_PIN GPIO_PIN_15
#define TEMPSENSE_MAX_CS_PORT GPIOA


void tempsense_init(void);
void tempsense_readtemp(void);
float tempsense_gettemp(void);

#endif