sht4x.rst 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. .. SPDX-License-Identifier: GPL-2.0
  2. Kernel driver sht4x
  3. ===================
  4. Supported Chips:
  5. * Sensirion SHT4X
  6. Prefix: 'sht4x'
  7. Addresses scanned: None
  8. Datasheet:
  9. English: https://www.sensirion.com/fileadmin/user_upload/customers/sensirion/Dokumente/2_Humidity_Sensors/Datasheets/Sensirion_Humidity_Sensors_SHT4x_Datasheet.pdf
  10. Author: Navin Sankar Velliangiri <[email protected]>
  11. Description
  12. -----------
  13. This driver implements support for the Sensirion SHT4x chip, a humidity
  14. and temperature sensor. Temperature is measured in degree celsius, relative
  15. humidity is expressed as a percentage. In sysfs interface, all values are
  16. scaled by 1000, i.e. the value for 31.5 degrees celsius is 31500.
  17. Usage Notes
  18. -----------
  19. The device communicates with the I2C protocol. Sensors can have the I2C
  20. address 0x44. See Documentation/i2c/instantiating-devices.rst for methods
  21. to instantiate the device.
  22. Sysfs entries
  23. -------------
  24. =============== ============================================
  25. temp1_input Measured temperature in millidegrees Celcius
  26. humidity1_input Measured humidity in %H
  27. update_interval The minimum interval for polling the sensor,
  28. in milliseconds. Writable. Must be at least
  29. 2000.
  30. =============== ============================================