Greetings,
Just got my E-Series kit and was able to get everything fired up and attached to my Particle account. I ran through the tutorial with the Grove Temp sensor and ran into a problem of no events being published. Thought this may be a connectivity issue, so I added the following code:
// Check if any reads failed and exit early (to try again).
if (isnan(h) || isnan(t) || isnan(f)) {
Serial.println("Failed to read from DHT sensor!");
Particle.publish("temp", "No Readings"); ** Added this snippet ****
return;
}
Now I am getting the event “No Readings” event published to my console…
I also tried connecting the Grove sensor to both 4 pin connectors to see if it was a pin issue - didn’t change the results.
Could I have a faulty Sensor?
Thanks!