Page 1 of 1

High Temperature and humidity meltdown!!

Posted: Thu Aug 20, 2015 6:01 pm
by 407charles
Have you ever experience a high temp. and humidity weather? It's very bad! I'm trying to design a control to track the ambient temp. and humidity to control a plant environment. I'm using the DHT11 humidity/temp. combination sensor with "One-Wire communication protocol. There is a couple examples in the flowcode wiki website but the examples are with the DS1820 blocks for this particular e-block, and the macros are built for this particular sensor (I think). I never perform any program in this communication protocol, and I'm having problems trying to make my program work. Can anybody help me with this please? I'm including my first attempt and the datasheet. Thanks a lot with advance. Any help is greatly appreciated.

Re: High Temperature and humidity meltdown!!

Posted: Thu Aug 20, 2015 9:20 pm
by acestu
Hi 407Charles,

This post might help you:

http://www.matrixtsl.com/mmforums/viewt ... 26&t=15303

Cheers
Stuart

Re: High Temperature and humidity meltdown!!

Posted: Thu Aug 20, 2015 10:33 pm
by kersing
The DHT11 uses one data wire to exchange data with the controller. However the protocol used is not Maxims (previously Dallas Semiconductors) 1-wire protocol. (Which is a proprietary protocol that requires a license to implement on a sensor.) As a result the One-Wire communication protocol implemented to talk to DS1820 devices will not work with the DHT11.

Re: High Temperature and humidity meltdown!!

Posted: Fri Aug 21, 2015 5:56 pm
by acestu
Hi Jac,

Thanks for that info very interesting, so a licence needed for the DHT-11 sensors one wire protocol...

Stuart

Re: High Temperature and humidity meltdown!!

Posted: Fri Aug 21, 2015 6:00 pm
by kersing
No, the protocol used for DHT11 is not the licensed protocol. One wire (1-wire) requires licensing from Maxim if you implement it in a slave device like a sensor. The master (controller) part can be implemented for free.
Again, this does not apply to the DHT11 as it uses a different protocol.

Re: High Temperature and humidity meltdown!!

Posted: Sun Aug 23, 2015 6:08 pm
by 407charles
Thanks a lot.