Linux kernel mirror (for testing)
git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel
os
linux
1Sensirion SHT15 Humidity and Temperature Sensor
2
3Required properties:
4
5 - "compatible": must be "sensirion,sht15".
6 - "data-gpios": GPIO connected to the data line.
7 - "clk-gpios": GPIO connected to the clock line.
8 - "vcc-supply": regulator that drives the VCC pin.
9
10Example:
11
12 sensor {
13 pinctrl-names = "default";
14 pinctrl-0 = <&pinctrl_sensor>;
15 compatible = "sensirion,sht15";
16 clk-gpios = <&gpio4 12 0>;
17 data-gpios = <&gpio4 13 0>;
18 vcc-supply = <®_sht15>;
19 };