mirror of
https://github.com/jialexd/sdk-ameba-v4.0c_180328.git
synced 2024-11-28 17:20:30 +00:00
13 lines
278 B
C
Executable file
13 lines
278 B
C
Executable file
#ifndef SHTC1_H
|
|
#define SHTC1_H
|
|
|
|
#define NO_ERROR 0x00
|
|
#define ACK_ERROR 0x01
|
|
#define CHECKSUM_ERROR 0x02
|
|
#define NULL_ERROR 0x03
|
|
|
|
int SHTC_GetTempAndHumi(float *temp, float *humi);
|
|
int SHTC_Init(uint16_t *pID);
|
|
void example_shtc1(void);
|
|
|
|
#endif
|