1234567891011121314151617181920 |
- /*
- * oneWire.h
- *
- * Created on: 31 Jan 2022
- * Author: thomaschef
- */
- #ifndef INC_ONEWIRE_H_
- #define INC_ONEWIRE_H_
- #include<stdbool.h>
- bool oneWireSearch(uint64_t *newAddr);
- void reset_oneWireSearch();
- float readTemperature();
- #endif /* INC_ONEWIRE_H_ */
|