Grove Temperature Sensor

Yeah. The temp/hum sensor does not seem to return valid values…

Hey Radman, can you give us a little more detail? Are you getting values at all? What sensor are you using?

Hi, I had a similar problem.
For me the solution was really simple: i used the code of the dhtpro sensor while using the standar one, as a results temperature was around 600 and humidity around 1100.
try to change
[ temp,hum ] = dht(dht_sensor_port,1)
with
[ temp,hum ] = dht(dht_sensor_port,0)

Let me know if anything change!

Davide