Humidity and Temperature Sensor - Sensirion SHT1x driver (with exported functions to use it from C code)

Dependents:   sht15_remote_monitoring

Fork of SHTx by Roy van Dam

Committer:
ppatierno
Date:
Sun Nov 15 15:13:08 2015 +0000
Revision:
2:7505a67001b4
Added export layer to use SHTx from C code

Who changed what in which revision?

UserRevisionLine numberNew contents of line
ppatierno 2:7505a67001b4 1 void SHT15_init(void);
ppatierno 2:7505a67001b4 2 void SHT15_update(void);
ppatierno 2:7505a67001b4 3 float SHT15_getTemperature(void);
ppatierno 2:7505a67001b4 4 float SHT15_getHumidity(void);
ppatierno 2:7505a67001b4 5 void SHT15_setScale(bool value);