sht15.txt 476 B

12345678910111213141516171819
  1. Sensirion SHT15 Humidity and Temperature Sensor
  2. Required properties:
  3. - "compatible": must be "sensirion,sht15".
  4. - "data-gpios": GPIO connected to the data line.
  5. - "clk-gpios": GPIO connected to the clock line.
  6. - "vcc-supply": regulator that drives the VCC pin.
  7. Example:
  8. sensor {
  9. pinctrl-names = "default";
  10. pinctrl-0 = <&pinctrl_sensor>;
  11. compatible = "sensirion,sht15";
  12. clk-gpios = <&gpio4 12 0>;
  13. data-gpios = <&gpio4 13 0>;
  14. vcc-supply = <&reg_sht15>;
  15. };