@TheoL said:
@paqor That's great. I looked at the Sketch you posted on your site and noticed you're still using a delay. Which as short as it may be can cause messages to be missed.
void loop(){
//-----------------------------------------------------------------------------
//TEMP_FEUCHTE
delay(dht.getMinimumSamplingPeriod());
My advice is to do this with a wait as well.
void loop(){
//-----------------------------------------------------------------------------
//TEMP_FEUCHTE
wait(dht.getMinimumSamplingPeriod()); // Changed ByTheo
That way you don't block incoming messages. Generally, if you want your sketch to wait use a wait.
genial, works perfectly....