Fix overly-enthusiastic .gitignore

This commit is contained in:
polyfractal 2017-01-10 06:42:22 -05:00
parent a83d26d251
commit 76247cfc7a
20 changed files with 7104 additions and 1 deletions

View file

@ -0,0 +1,13 @@
#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