1234567891011121314151617 |
- /*
- * temperatur.h
- *
- * Created on: Feb 23, 2018
- * Author: sebastian
- */
- #ifndef TEMPERATUR_H_
- #define TEMPERATUR_H_
- #define TEMP_CS 10 // CS for the MAX31855
- void temperatur_init(void);
- int16_t get_temperatur (void);
- #endif /* TEMPERATUR_H_ */
|