OneWire.h 326 B

12345678910111213141516171819202122232425
  1. /*
  2. * OneWire.h
  3. *
  4. * Created on: Feb 28, 2018
  5. * Author: sebastian
  6. */
  7. #ifndef ONEWIRE_H_
  8. #define ONEWIRE_H_
  9. #include <wiringPi.h>
  10. #include <stdio.h>
  11. #include <string.h>
  12. #include <errno.h>
  13. #include <inttypes.h>
  14. #include <unistd.h>
  15. #include "global.h"
  16. #include "logger.h"
  17. #define OW_PIN 5
  18. #endif /* ONEWIRE_H_ */