dht.h 214 B

12345678910111213141516
  1. #ifndef DHT_H_
  2. #define DHT_H_
  3. #include "util.h"
  4. #define DHT_DATA_LEN 5u
  5. typedef void (*dht_callback_t)(const uint8_t *data);
  6. void dht_start(dht_callback_t callback);
  7. void dht_init(void);
  8. #endif /* DHT_H_ */