oneWire.h 336 B

123456789101112131415161718192021
  1. /*
  2. * oneWire.h
  3. *
  4. * Created on: 31 Jan 2022
  5. * Author: thomaschef
  6. */
  7. #ifndef INC_ONEWIRE_H_
  8. #define INC_ONEWIRE_H_
  9. #include<stdbool.h>
  10. bool oneWireSearch(uint64_t *newAddr);
  11. void reset_oneWireSearch();
  12. float readTemperature();
  13. void setConfigRegister(const uint64_t adr, const uint8_t value);
  14. #endif /* INC_ONEWIRE_H_ */