123456789101112131415161718192021 |
- /*
- * 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();
- void setConfigRegister(const uint64_t adr, const uint8_t value);
- #endif /* INC_ONEWIRE_H_ */
|