2011-04-12 23:34:36 +04:00
Kernel driver sht15
===================
Authors:
2019-04-17 12:46:28 +03:00
2011-04-12 23:34:36 +04:00
* Wouter Horre
* Jonathan Cameron
2011-04-12 23:34:38 +04:00
* Vivien Didelot <vivien.didelot@savoirfairelinux.com>
2011-04-12 23:34:39 +04:00
* Jerome Oufella <jerome.oufella@savoirfairelinux.com>
2011-04-12 23:34:36 +04:00
Supported chips:
2019-04-17 12:46:28 +03:00
2011-04-12 23:34:36 +04:00
* Sensirion SHT10
2019-04-17 12:46:28 +03:00
2011-04-12 23:34:36 +04:00
Prefix: 'sht10'
* Sensirion SHT11
2019-04-17 12:46:28 +03:00
2011-04-12 23:34:36 +04:00
Prefix: 'sht11'
* Sensirion SHT15
2019-04-17 12:46:28 +03:00
2011-04-12 23:34:36 +04:00
Prefix: 'sht15'
* Sensirion SHT71
2019-04-17 12:46:28 +03:00
2011-04-12 23:34:36 +04:00
Prefix: 'sht71'
* Sensirion SHT75
2019-04-17 12:46:28 +03:00
2011-04-12 23:34:36 +04:00
Prefix: 'sht75'
Datasheet: Publicly available at the Sensirion website
2019-04-17 12:46:28 +03:00
http://www.sensirion.ch/en/pdf/product_information/Datasheet-humidity-sensor-SHT1x.pdf
2011-04-12 23:34:36 +04:00
Description
-----------
The SHT10, SHT11, SHT15, SHT71, and SHT75 are humidity and temperature
sensors.
2011-04-12 23:34:38 +04:00
The devices communicate using two GPIO lines.
Supported resolutions for the measurements are 14 bits for temperature and 12
bits for humidity, or 12 bits for temperature and 8 bits for humidity.
The humidity calibration coefficients are programmed into an OTP memory on the
chip. These coefficients are used to internally calibrate the signals from the
sensors. Disabling the reload of those coefficients allows saving 10ms for each
2013-04-12 20:22:11 +04:00
measurement and decrease power consumption, while losing on precision.
2011-04-12 23:34:38 +04:00
2017-09-10 12:44:46 +03:00
Some options may be set via sysfs attributes.
2011-04-12 23:34:36 +04:00
2011-04-12 23:34:39 +04:00
Notes:
* The regulator supply name is set to "vcc".
* If a CRC validation fails, a soft reset command is sent, which resets
status register to its hardware default value, but the driver will try to
restore the previous device configuration.
2011-04-12 23:34:36 +04:00
2011-04-12 23:34:38 +04:00
Platform data
-------------
2011-04-12 23:34:39 +04:00
* checksum:
set it to true to enable CRC validation of the readings (default to false).
2011-04-12 23:34:38 +04:00
* no_otp_reload:
flag to indicate not to reload from OTP (default to false).
* low_resolution:
flag to indicate the temp/humidity resolution to use (default to false).
2011-04-12 23:34:36 +04:00
Sysfs interface
---------------
2019-04-17 12:46:28 +03:00
================== ==========================================================
temp1_input temperature input
humidity1_input humidity input
heater_enable write 1 in this attribute to enable the on-chip heater,
0 to disable it. Be careful not to enable the heater
for too long.
temp1_fault if 1, this means that the voltage is low (below 2.47V) and
measurement may be invalid.
humidity1_fault same as temp1_fault.
================== ==========================================================