12345678910111213141516171819202122232425 |
- /*
- * OneWire.h
- *
- * Created on: Feb 28, 2018
- * Author: sebastian
- */
- #ifndef ONEWIRE_H_
- #define ONEWIRE_H_
- #include <wiringPi.h>
- #include <stdio.h>
- #include <string.h>
- #include <errno.h>
- #include <inttypes.h>
- #include <unistd.h>
- #include "global.h"
- #include "logger.h"
- #define OW_PIN 5
- #endif /* ONEWIRE_H_ */
|