am2303.h 529 B

12345678910111213
  1. #ifndef __AM2303_H
  2. #define __AM2303_H
  3. #include "interface.h"
  4. INT8U am2303_init(void); //初始化AM2303
  5. INT8U am2303_read_data(INT8U *temp, INT8U *humi); //读取温湿度
  6. INT8U am2303_read_byte(void); //读出一个字节
  7. INT8U am2303_read_bit(void); //读出一个位
  8. INT8U am2303_check(void); //检测是否存在AM2303
  9. void am2303_rst(void); //复位AM2303
  10. uint8_t DHT11_ReadByte(void);
  11. #endif