ok1cdj / ESP8266-LUA

LUA scripts for ESP8266 with NodeMCU firmware
105 stars 63 forks source link

Errors in DHT11 #9

Open a-v-ebrahimi opened 9 years ago

a-v-ebrahimi commented 9 years ago

I tried Thermometer-DHT11-Thingspeak it works properly, but sometimes it reports temperature wrong, for example when room temperature is about 28 sometimes it reports 10 or 12.

adamjennison commented 8 years ago

I had a similar problem I solved it by forcing the CPU to 160MHZ at the start of the init.lua It's been super stable since then.

--init.lua node.setcpufreq(node.CPU160MHZ)

a-v-ebrahimi commented 8 years ago

Great, doesn't it harm the CPU?