💬 Air Humidity Sensor - DHT
-
What @Skywatch meant was that "#define DHT_DATA_PIN 2" is STILL in the example code on this page. Anyone who even gets as far as working it all out and wiring it all up and it still it won't work like that! - Not when it needs to be connected to PIN 3 instead (esp if the NRF is using pin 2, which is likely).
Happy New Year to you all! :) -
Just a note, tried following this for adding a DHT11 to the ESP8266 MQTT gateway. The MySensors example lib does not work with esp8266 (temperatures around 17000+). However the adafruit DHT library 1.3.0 works just fine.Any reason that couldn't be used here?
-
@hek @mfalkvidd I read that you discussed about PIN 2 and 3.
Code say PIN 2, Wiring things up say PIN 2 and picture shows PIN 3.
It can't use PIN 2 or can it, PIN 2 is used by the radio, or am I to tired :)?
thats the irq pin in the radio post.
Not used by the radio -
thats the irq pin in the radio post.
Not used by the radio -
Tried to follow the history on the humidity file back in time on github.
At some point (2.0 release) the example was switched from HumiditySensor.ino (using pin 3) to DhtTemperatureAndHumiditySensor.ino (pin 2) created by @mozzbozz.Not sure why the pin was switched, but you can run without the radio/IRQ-pin connection as long as not activating the MY_RX_MESSAGE_BUFFER_FEATURE.
-
Tried to follow the history on the humidity file back in time on github.
At some point (2.0 release) the example was switched from HumiditySensor.ino (using pin 3) to DhtTemperatureAndHumiditySensor.ino (pin 2) created by @mozzbozz.Not sure why the pin was switched, but you can run without the radio/IRQ-pin connection as long as not activating the MY_RX_MESSAGE_BUFFER_FEATURE.
-
Hello. Maybe someone could help :) hopefully..
I have arduino1 with 1 DHT22, which is over arduinoGW connected to RSPi with latest domoticz.
when i connect stuff up, after some time i see some strange childids, not related to this arduino1 in no way.
Lots of unknown!, with V_TEMP values, with V_HUM values, even V_FORECAST, V_PRESSURE and etc. which arduino1 should not send (or no other arduino on my area).Illustration:
<img href="http://www.lstudio.lt/wp-content/uploads/dht22problem.png">
http://www.lstudio.lt/wp-content/uploads/dht22problem.pngmy code is quite simple (for ex only temperature is shown)
#define CHILD_DESCR "TEMP3" #undef CHILD_ID #define CHILD_ID 31 present(CHILD_ID, S_TEMP, CHILD_DESCR); delay(250) ; loop: temp3=dht3.readTemperature(); if (temp3 >= 120) {temp3 = lasttemp3;} if (temp3 <= -50) {temp3 = lasttemp3;} MyMessage msg31(CHILD_ID,V_TEMP); send(msg31.set(temp3,1));so.. that is basically all
-
Hello. Maybe someone could help :) hopefully..
I have arduino1 with 1 DHT22, which is over arduinoGW connected to RSPi with latest domoticz.
when i connect stuff up, after some time i see some strange childids, not related to this arduino1 in no way.
Lots of unknown!, with V_TEMP values, with V_HUM values, even V_FORECAST, V_PRESSURE and etc. which arduino1 should not send (or no other arduino on my area).Illustration:
<img href="http://www.lstudio.lt/wp-content/uploads/dht22problem.png">
http://www.lstudio.lt/wp-content/uploads/dht22problem.pngmy code is quite simple (for ex only temperature is shown)
#define CHILD_DESCR "TEMP3" #undef CHILD_ID #define CHILD_ID 31 present(CHILD_ID, S_TEMP, CHILD_DESCR); delay(250) ; loop: temp3=dht3.readTemperature(); if (temp3 >= 120) {temp3 = lasttemp3;} if (temp3 <= -50) {temp3 = lasttemp3;} MyMessage msg31(CHILD_ID,V_TEMP); send(msg31.set(temp3,1));so.. that is basically all
I have also seen this, I noticed it last week. Some of my Nodes have those Unknown-child, but it is working correctly anyway.
DZ 3.5877, MyS 1.5.1, RPi 2 -
Hello,
i have a problem with this sketch.
After downloading DTH.h froom Mysensors Examples, i have this error :
DhtTemperatureAndHumiditySensor:85: error: 'getConfig' was not declared in this scopemetric = getConfig().isMetric;
Any Idea of my mistake ?...