brintos

brintos / linux-shallow public Read only

0
0
Text · 1.5 KiB · f38c4c9 Raw
68 lines · plain
1Kernel driver shtc12===================3 4Supported chips:5 6  * Sensirion SHTC17 8    Prefix: 'shtc1'9 10    Addresses scanned: none11 12    Datasheet: https://www.sensirion.com/file/datasheet_shtc113 14 15 16  * Sensirion SHTW117 18    Prefix: 'shtw1'19 20    Addresses scanned: none21 22    Datasheet: https://www.sensirion.com/file/datasheet_shtw123 24 25 26  * Sensirion SHTC327 28    Prefix: 'shtc3'29 30    Addresses scanned: none31 32    Datasheet: https://www.sensirion.com/file/datasheet_shtc333 34 35 36Author:37 38  Johannes Winkelmann <johannes.winkelmann@sensirion.com>39 40Description41-----------42 43This driver implements support for the Sensirion SHTC1, SHTW1, and SHTC344chips, a humidity and temperature sensor. Temperature is measured in degrees45celsius, relative humidity is expressed as a percentage.46 47The device communicates with the I2C protocol. All sensors are set to I2C48address 0x70. See Documentation/i2c/instantiating-devices.rst for methods to49instantiate the device.50 51There are two options configurable by means of shtc1_platform_data:52 531. blocking (pull the I2C clock line down while performing the measurement) or54   non-blocking mode. Blocking mode will guarantee the fastest result but55   the I2C bus will be busy during that time. By default, non-blocking mode56   is used. Make sure clock-stretching works properly on your device if you57   want to use blocking mode.582. high or low accuracy. High accuracy is used by default and using it is59   strongly recommended.60 61sysfs-Interface62---------------63 64temp1_input65	- temperature input66humidity1_input67	- humidity input68