shtc1 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. Kernel driver shtc1
  2. ===================
  3. Supported chips:
  4. * Sensirion SHTC1
  5. Prefix: 'shtc1'
  6. Addresses scanned: none
  7. Datasheet: http://www.sensirion.com/file/datasheet_shtc1
  8. * Sensirion SHTW1
  9. Prefix: 'shtw1'
  10. Addresses scanned: none
  11. Datasheet: Not publicly available
  12. Author:
  13. Johannes Winkelmann <johannes.winkelmann@sensirion.com>
  14. Description
  15. -----------
  16. This driver implements support for the Sensirion SHTC1 chip, a humidity and
  17. temperature sensor. Temperature is measured in degrees celsius, relative
  18. humidity is expressed as a percentage. Driver can be used as well for SHTW1
  19. chip, which has the same electrical interface.
  20. The device communicates with the I2C protocol. All sensors are set to I2C
  21. address 0x70. See Documentation/i2c/instantiating-devices for methods to
  22. instantiate the device.
  23. There are two options configurable by means of shtc1_platform_data:
  24. 1. blocking (pull the I2C clock line down while performing the measurement) or
  25. non-blocking mode. Blocking mode will guarantee the fastest result but
  26. the I2C bus will be busy during that time. By default, non-blocking mode
  27. is used. Make sure clock-stretching works properly on your device if you
  28. want to use blocking mode.
  29. 2. high or low accuracy. High accuracy is used by default and using it is
  30. strongly recommended.
  31. sysfs-Interface
  32. ---------------
  33. temp1_input - temperature input
  34. humidity1_input - humidity input