DS18B20.h 275 B

123456789101112131415161718192021
  1. /*
  2. * DS18B20.h
  3. *
  4. * Created on: Feb 28, 2018
  5. * Author: sebastian
  6. */
  7. #ifndef DS18B20_H_
  8. #define DS18B20_H_
  9. #include <inttypes.h>
  10. #include "OneWire.h"
  11. void DS18B20_readRom(void);
  12. void DS18B20_init(void);
  13. int8_t DS18B20_readTemp (void);
  14. #endif /* DS18B20_H_ */