JasonWu 发表于 2019-9-10 13:07:04

AIO-3399C如何添加SHT31温湿度传感器?

sht31温湿度传感器接在i2c_7上。
根据官网添加并重新编译
kernel/arch/arm64/boot/dts/rockchip/rk3399-firefly-mini-edp.dts

&i2c7 {
    status = "okay";
    sht31: sht31@41 {
      compatible = "gslX680";
      reg = <0x41>;
      screen_max_x = <1536>;
      screen_max_y = <2048>;
      touch-gpio = <&gpio1 20 IRQ_TYPE_LEVEL_LOW>;
      reset-gpio = <&gpio0 12 GPIO_ACTIVE_HIGH>;
    };
};

并没有看到新的设备信息出现(./i2cdetect -l)

Mr.Lee 发表于 2019-9-10 15:54:24

LZ是哪来的参考?

JasonWu 发表于 2019-9-16 13:20:51

Mr.Lee 发表于 2019-9-10 15:54
LZ是哪来的参考?

Firefly 提供的I2C使用

Mr.Lee 发表于 2019-9-18 09:34:05

JasonWu 发表于 2019-9-16 13:20
Firefly 提供的I2C使用

参考这个有什么用?
3308倒是有个案例:
http://dev.t-firefly.com/forum.php?mod=viewthread&tid=52996&highlight=%CE%C2%CA%AA%B6%C8%B4%AB%B8%D0%C6%F7
页: [1]
查看完整版本: AIO-3399C如何添加SHT31温湿度传感器?