DHT11 Sensor on Matter

Hey, Varshil here,
I got stuck during implementation of DHT11 Sensor on Matter SDK.

I follow this Link of Adding clusters to Matter application — nRF Connect SDK 2.4.0 documentation (nordicsemi.com) and I successfully completed all the steps which are available in that link.

Now when I pass the command to the Chip-Tool and below I pasted the commands which I write in Chip-Tool.

sudo ./chip-tool-debug onoff off 12 1

sudo ./chip-tool-debug identify identify 10 12 1

And After this commands I got an Error that:

I: 34957 [SC]Received Sigma3 msg
E: 34966 [SC]The device does not support GetClock_RealTimeMS() API: 3.  Falling back to Last Known Good UTC Time
E: 35163 [DL]Long dispatch time: 187 ms, for event type 2
I: 35263 [EM]<<< [E:4417r S:0 M:58029193 (Ack:51879023)] (U) Msg TX to 0:0000000000000000 [0000] --- Type 0000:40 (SecureChannel:StatusReport)
I: 35276 [IN](U) Sending msg 58029193 to IP address 'UDP:[fd5a:d4ce:1ab2:5fa8:e99b:db8:b197:cff9]:56825'
I: 35287 [SC]SecureSession[0x200034f8]: Moving from state 'kEstablishing' --> 'kActive'
D: 35295 [IN]SecureSession[0x200034f8]: Activated - Type:2 LSID:25501

Your kindly help will be genuinely appreciated.

Thank You.

Parents Reply
  • hello,

    yes i am using nrf52840DK and chiptool in my PC which is running on Ubuntu 22.04 and yes i am using this and i have also try to use DHT11 with nrf52832DK messuring temprature following this and i got error and that is:

    *** Booting Zephyr OS build v3.3.99-ncs1 ***
    Sensor fetch failed: -5

    and i have also change the overlay file to this.

    / {
    dht11 {
    compatible = "aosong,dht";
    dio-gpios = <&gpio0 9 (GPIO_PULL_UP | GPIO_ACTIVE_LOW)>;
    };
    };
Children
Related