<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[Wierd temp&#x2F;Hum]]></title><description><![CDATA[<p dir="auto">Hi.</p>
<p dir="auto">I updated some temp/hum(DHT22) sensors with nodemanager a month ago. And at the same time I removed the LED and the regulator on the Arduino pro mini. But now I have problems with my sensors. It send some strange values to Domoticz, see attached picture. I have the problem on all sensors but the time between the low value is different and it is also not at the same time on two sensors. Can anyone please give me a hint on what to do?</p>
<p dir="auto"><img src="/assets/uploads/files/1507288104566-hall-resized.png" alt="0_1507288104279_Hall.png" class=" img-fluid img-markdown" /></p>
<pre><code>#include "config.h"
#include &lt;MySensors.h&gt;
#include "NodeManager.h"

NodeManager nodeManager;

void before() {
  Serial.begin(MY_BAUD_RATE);
  nodeManager.setSleep(SLEEP,1,MINUTES);
  nodeManager.setBatteryMin(1.8);
  nodeManager.setBatteryMax(2.4);
  nodeManager.setBatteryInternalVcc(true);
  nodeManager.setBatteryPin(A0);

  nodeManager.registerSensor(SENSOR_DHT22, 3);
  nodeManager.before();
}

void presentation() {
  nodeManager.presentation();
}

void setup() {
  nodeManager.setup();
}

void loop() {
  nodeManager.loop();
}

void receive(const MyMessage &amp;message) {
  nodeManager.receive(message);
}

void receiveTime(unsigned long ts) {
  nodeManager.receiveTime(ts);
}
</code></pre>
]]></description><link>https://forum.mysensors.org/topic/7776/wierd-temp-hum</link><generator>RSS for Node</generator><lastBuildDate>Sat, 05 Sep 2026 08:00:53 GMT</lastBuildDate><atom:link href="https://forum.mysensors.org/topic/7776.rss" rel="self" type="application/rss+xml"/><pubDate>Fri, 06 Oct 2017 11:13:40 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Wierd temp&#x2F;Hum on Fri, 06 Oct 2017 16:47:43 GMT]]></title><description><![CDATA[<p dir="auto">Dht sensors are usually not very quick. I tried nodemanager for one of my nodes but I got sketch size issue so I haven't put too much time into it.</p>
]]></description><link>https://forum.mysensors.org/post/77082</link><guid isPermaLink="true">https://forum.mysensors.org/post/77082</guid><dc:creator><![CDATA[gohan]]></dc:creator><pubDate>Fri, 06 Oct 2017 16:47:43 GMT</pubDate></item><item><title><![CDATA[Reply to Wierd temp&#x2F;Hum on Fri, 06 Oct 2017 16:35:21 GMT]]></title><description><![CDATA[<p dir="auto">Ok.</p>
<p dir="auto">I thought I could put a filter in domoticz but maybe it's easier to do that in the sensor instead :)</p>
<p dir="auto">Just realized that I haven't checked NodeMangager source code. Is there any check of Nan value?<br />
Or do I need to wake up the node a short time before reading DHT?</p>
]]></description><link>https://forum.mysensors.org/post/77081</link><guid isPermaLink="true">https://forum.mysensors.org/post/77081</guid><dc:creator><![CDATA[smilvert]]></dc:creator><pubDate>Fri, 06 Oct 2017 16:35:21 GMT</pubDate></item><item><title><![CDATA[Reply to Wierd temp&#x2F;Hum on Fri, 06 Oct 2017 12:22:16 GMT]]></title><description><![CDATA[<p dir="auto">I think that could be a sensor reading error</p>
]]></description><link>https://forum.mysensors.org/post/77064</link><guid isPermaLink="true">https://forum.mysensors.org/post/77064</guid><dc:creator><![CDATA[gohan]]></dc:creator><pubDate>Fri, 06 Oct 2017 12:22:16 GMT</pubDate></item></channel></rss>